copyWith method

Tuple4 copyWith (
  1. {T0 item0,
  2. T1 item1,
  3. T2 item2,
  4. T3 item3}
)

Implementation

Tuple4 copyWith({
  T0 item0,
  T1 item1,
  T2 item2,
  T3 item3,
}) =>
    Tuple4(
      item0 ?? this.item0,
      item1 ?? this.item1,
      item2 ?? this.item2,
      item3 ?? this.item3,
    );