copyWith method
Implementation
DropTableSchema copyWith(
{List<String>? names, bool? ifExists, DropTableType? type}) {
return DropTableSchema(
names: names ?? this.names,
ifExists: ifExists ?? this.ifExists,
type: type ?? this.type);
}