constructorParams property

String constructorParams

Implementation

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