auto_data icon indicating copy to clipboard operation
auto_data copied to clipboard

Custom constructors require all fields to be specified

Open pauldemarco opened this issue 7 years ago • 0 comments

Custom constructors require all fields to be specified:

@data
class $Person {
  String name = 'Paul';

  @nullable
  double weight;

  int age;

  /// Generated code will complain that final field `weight` is not initialized
  $Person.genius()
  : name = 'Albert',
    age = 140;
}

pauldemarco avatar Jan 17 '19 20:01 pauldemarco