ModelColumnSnapshot constructor

ModelColumnSnapshot({
  1. required String name,
  2. required String columnName,
  3. required String resolvedType,
  4. required String? columnType,
  5. required bool isNullable,
  6. required bool isPrimaryKey,
  7. required bool isUnique,
  8. required bool isIndexed,
  9. required bool autoIncrement,
})

Implementation

ModelColumnSnapshot({
  required this.name,
  required this.columnName,
  required this.resolvedType,
  required this.columnType,
  required this.isNullable,
  required this.isPrimaryKey,
  required this.isUnique,
  required this.isIndexed,
  required this.autoIncrement,
});