SchemaTable constructor

const SchemaTable({
  1. required String name,
  2. String? schema,
  3. String? type,
  4. int? sizeBytes,
  5. String? comment,
  6. String? engine,
  7. List<SchemaColumn> fields = const <SchemaColumn>[],
})

Implementation

const SchemaTable({
  required this.name,
  this.schema,
  this.type,
  this.sizeBytes,
  this.comment,
  this.engine,
  this.fields = const <SchemaColumn>[],
});