FieldInfo constructor

const FieldInfo({
  1. required String name,
  2. required String type,
  3. bool isNullable = false,
})

Implementation

const FieldInfo({
  required this.name,
  required this.type,
  this.isNullable = false,
});