copyWith method
GearSelection
copyWith({
- String? key,
- String? description,
- List<
GearOption> ? options, - double? coins,
Implementation
GearSelection copyWith({
String? key,
String? description,
List<GearOption>? options,
double? coins,
}) =>
GearSelection(
key: key ?? this.key,
description: description ?? this.description,
options: options ?? this.options,
coins: coins ?? this.coins,
);