FieldInfo constructor

FieldInfo({
  1. required String name,
  2. String? typeName,
  3. bool isFinal = false,
  4. bool isStatic = false,
})

Implementation

FieldInfo({
  required this.name,
  this.typeName,
  this.isFinal = false,
  this.isStatic = false,
});