copyWith method

Savepoint copyWith({
  1. Ident? name,
})

Returns a new instance by overriding the values passed as arguments

Implementation

Savepoint copyWith({
  Ident? name,
}) =>
    Savepoint(name: name ?? this.name);