MysqlTable constructor

MysqlTable({
  1. String? table,
  2. Iterable<MysqlColumn>? mysqlColumns,
})

Implementation

factory MysqlTable({
  $core.String? table,
  $core.Iterable<MysqlColumn>? mysqlColumns,
}) {
  final $result = create();
  if (table != null) {
    $result.table = table;
  }
  if (mysqlColumns != null) {
    $result.mysqlColumns.addAll(mysqlColumns);
  }
  return $result;
}