FieldDoc constructor

FieldDoc({
  1. required String name,
  2. required String type,
  3. String? description,
  4. bool isStatic = false,
  5. bool isFinal = false,
  6. bool isConst = false,
  7. bool isLate = false,
  8. String? defaultValue,
})

Implementation

FieldDoc({
  required this.name,
  required this.type,
  this.description,
  this.isStatic = false,
  this.isFinal = false,
  this.isConst = false,
  this.isLate = false,
  this.defaultValue,
});