copyWith method
Implementation
CreateTableSchema copyWith(
{String? tableName,
Locale? locale,
bool? temporary,
bool? ifNotExists,
List<CreateTableClause>? clauses}) {
return CreateTableSchema(tableName ?? this.tableName,
locale: locale ?? this.locale,
temporary: temporary ?? this.temporary,
ifNotExists: ifNotExists ?? this.ifNotExists,
clauses: clauses ?? this.clauses);
}