copyWith abstract method

  1. @useResult
ColumnMigration copyWith({
  1. String? columnName,
  2. bool? addNullable,
  3. bool? removeNullable,
  4. bool? changeDefault,
  5. String? newDefault,
})

Returns a shallow copy of this ColumnMigration with some or all fields replaced by the given arguments.

Implementation

@_i1.useResult
ColumnMigration copyWith({
  String? columnName,
  bool? addNullable,
  bool? removeNullable,
  bool? changeDefault,
  String? newDefault,
});