quicktype
quicktype copied to clipboard
Required doesnt want an @anymore
When converting to Dart and use "Make all properties required" it does add an @ infront of required. That isnt used anymore in Dart and Flutter.
To help, currently it creates the following for Dart conversion:
CustomCodeValue({
@required this.codeValue,
@required this.display,
@required this.codeSet,
@required this.codeValueId,
});
Should be:
CustomCodeValue({
required this.codeValue,
required this.display,
required this.codeSet,
required this.codeValueId,
});
Duplicate of #1755