copyWithWrapped method

UpdatePhoneNumberRequest copyWithWrapped({
  1. Wrapped? agentId,
})

Implementation

UpdatePhoneNumberRequest copyWithWrapped({Wrapped<dynamic>? agentId}) {
  return UpdatePhoneNumberRequest(
      agentId: (agentId != null ? agentId.value : this.agentId));
}