FieldType constructor

FieldType({
  1. required String name,
  2. required String fullName,
  3. required String normalizedName,
  4. CommonFieldType? commonType,
})

Implementation

FieldType({
  required this.name,
  required this.fullName,
  required this.normalizedName,
  this.commonType,
});