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