constructorAsserts property

String constructorAsserts

Implementation

String get constructorAsserts {
  if (this.fields.isEmpty || this._commonModel.config.nnbd) {
    return ';';
  } else {
    return ' : ' + this.fields.map((field) => field.assertNotNull).join(', ') + ';';
  }
}