copyWith method

Reactions copyWith({
  1. String? reaction,
})

Implementation

Reactions copyWith({
  String? reaction,
}) =>
    Reactions(
      reaction: reaction ?? this.reaction,
    );