copyWith method

MoveInstantaneousRewardsCert copyWith({
  1. MoveInstantaneousReward? moveInstantaneousReward,
})

Implementation

MoveInstantaneousRewardsCert copyWith(
    {MoveInstantaneousReward? moveInstantaneousReward}) {
  return MoveInstantaneousRewardsCert(
      moveInstantaneousReward ?? this.moveInstantaneousReward);
}