Skip to content

Commit

Permalink
fix: Remove Keys from Form.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathrunet committed Aug 4, 2023
1 parent b4bcbf1 commit 43e8b67
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions packages/masamune_builder/lib/form/form_value.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,6 @@ List<Spec> formValueClass(
bool autoDisposeWhenUnreferenced,
) {
return [
Enum(
(e) => e
..name = "_\$${model.name}Keys"
..values.addAll([
...model.parameters.map((param) {
return EnumValue(
(v) => v..name = param.name,
);
}),
]),
),
Class(
(c) => c
..name = "_\$${model.name}FormQuery"
Expand Down

0 comments on commit 43e8b67

Please sign in to comment.