copyWith method

Offset copyWith({
  1. Expr? value,
  2. OffsetRows? rows,
})

Returns a new instance by overriding the values passed as arguments

Implementation

Offset copyWith({
  Expr? value,
  OffsetRows? rows,
}) =>
    Offset(value: value ?? this.value, rows: rows ?? this.rows);