copyWith method
Implementation
GetPhoneNumberSIPTrunkResponseModel copyWith(
{String? phoneNumber,
String? label,
String? phoneNumberId,
dynamic assignedAgent,
String? provider,
dynamic providerConfig}) {
return GetPhoneNumberSIPTrunkResponseModel(
phoneNumber: phoneNumber ?? this.phoneNumber,
label: label ?? this.label,
phoneNumberId: phoneNumberId ?? this.phoneNumberId,
assignedAgent: assignedAgent ?? this.assignedAgent,
provider: provider ?? this.provider,
providerConfig: providerConfig ?? this.providerConfig);
}