UDbColumnResponse constructor

UDbColumnResponse({
  1. required String name,
  2. required String dataType,
  3. required bool isNullable,
  4. required bool isPrimaryKey,
  5. required int ordinalPosition,
  6. String? defaultValue,
})

Implementation

UDbColumnResponse({
  required this.name,
  required this.dataType,
  required this.isNullable,
  required this.isPrimaryKey,
  required this.ordinalPosition,
  this.defaultValue,
});