constructorParams property Null safety
Implementation
String get constructorParams {
return this.fields.isNotEmpty
? '{' + this.fields.map((field) => field.constructorParam + ',').join() + '}'
: '';
}
String get constructorParams {
return this.fields.isNotEmpty
? '{' + this.fields.map((field) => field.constructorParam + ',').join() + '}'
: '';
}