copyWith method

MatchedDelete copyWith({
  1. Option<Expr>? predicate,
})

Returns a new instance by overriding the values passed as arguments

Implementation

MatchedDelete copyWith({
  Option<Expr>? predicate,
}) =>
    MatchedDelete(
        predicate: predicate != null ? predicate.value : this.predicate);