constructorParam property

String constructorParam

Implementation

String get constructorParam {
  if (cfg.nnbd) {
    return 'required this.$name';
  } else {
    return '@required this.$name';
  }
}