copyWith method

RoleDetail copyWith({
  1. PartyRoleType? partyRoleType,
})

Implementation

RoleDetail copyWith({enums.PartyRoleType? partyRoleType}) {
  return RoleDetail(partyRoleType: partyRoleType ?? this.partyRoleType);
}