copyWith method

DropTableSchema copyWith({
  1. List<String>? names,
  2. bool? ifExists,
  3. DropTableType? type,
})

Implementation

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