copyWith method
Implementation
ShortcutArg copyWith({
String? id,
String? shortLabel,
String? longLabel,
String? iconResourceName,
String? uri,
bool? enabled,
}) =>
ShortcutArg(
id: id ?? this.id,
shortLabel: shortLabel ?? this.shortLabel,
longLabel: longLabel ?? this.longLabel,
iconResourceName: iconResourceName ?? this.iconResourceName,
uri: uri ?? this.uri,
enabled: enabled ?? this.enabled,
);