copyWith method

GetPhoneNumberInfo copyWith({
  1. String? phoneNumberPrefix,
})

Implementation

GetPhoneNumberInfo copyWith({
  String? phoneNumberPrefix,
}) => GetPhoneNumberInfo(
  phoneNumberPrefix: phoneNumberPrefix ?? this.phoneNumberPrefix,
);