copyWith method

UpdatePhoneNumberRequest copyWith({
  1. dynamic agentId,
})

Implementation

UpdatePhoneNumberRequest copyWith({dynamic agentId}) {
  return UpdatePhoneNumberRequest(agentId: agentId ?? this.agentId);
}