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