FieldTypeInfo constructor

const FieldTypeInfo({
  1. required FieldDataType dataType,
  2. required bool isNullable,
  3. required bool isPrimaryKey,
})

Implementation

const FieldTypeInfo({
  required this.dataType,
  required this.isNullable,
  required this.isPrimaryKey,
});