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