FieldInfo constructor

FieldInfo({
  1. required String name,
  2. required String type,
  3. required bool isNullable,
  4. required bool isList,
  5. required bool isCustomType,
  6. bool isEnum = false,
  7. String? jsonKey,
  8. String? defaultValue,
})

Implementation

FieldInfo({
  required this.name,
  required this.type,
  required this.isNullable,
  required this.isList,
  required this.isCustomType,
  this.isEnum = false,
  this.jsonKey,
  this.defaultValue,
});