factoryParams property

String factoryParams

Implementation

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