copyWithParam property

String copyWithParam

Implementation

String get copyWithParam {
  if (cfg.nnbd) {
    return '${this.type.typeRepr}? ${this.name},';
  } else {
    return '${this.type.typeRepr} ${this.name},';
  }
}