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