UDbTableResponse constructor

UDbTableResponse({
  1. required String schema,
  2. required String name,
  3. required int estimatedRows,
  4. required int columnCount,
  5. String? size,
})

Implementation

UDbTableResponse({
  required this.schema,
  required this.name,
  required this.estimatedRows,
  required this.columnCount,
  this.size,
});