copyWith method

EpicRankRequestBean copyWith({
  1. String? rankBeforeEpic,
  2. String? rankAfterEpic,
  3. int? rankCustomFieldId,
})

Implementation

EpicRankRequestBean copyWith(
    {String? rankBeforeEpic, String? rankAfterEpic, int? rankCustomFieldId}) {
  return EpicRankRequestBean(
    rankBeforeEpic: rankBeforeEpic ?? this.rankBeforeEpic,
    rankAfterEpic: rankAfterEpic ?? this.rankAfterEpic,
    rankCustomFieldId: rankCustomFieldId ?? this.rankCustomFieldId,
  );
}