copyWith method
Implementation
AvailableReaction copyWith({ReactionType? type, bool? needsPremium}) =>
AvailableReaction(
type: type ?? this.type,
needsPremium: needsPremium ?? this.needsPremium,
);
AvailableReaction copyWith({ReactionType? type, bool? needsPremium}) =>
AvailableReaction(
type: type ?? this.type,
needsPremium: needsPremium ?? this.needsPremium,
);