copyWith method
- {T0 item0,
- T1 item1}
Implementation
Tuple2 copyWith({
T0 item0,
T1 item1,
}) =>
Tuple2(
item0 ?? this.item0,
item1 ?? this.item1,
);
Tuple2 copyWith({
T0 item0,
T1 item1,
}) =>
Tuple2(
item0 ?? this.item0,
item1 ?? this.item1,
);