copyWith method

CreatePhoneNumberResponseModel copyWith({
  1. String? phoneNumberId,
})

Implementation

CreatePhoneNumberResponseModel copyWith({String? phoneNumberId}) {
  return CreatePhoneNumberResponseModel(
      phoneNumberId: phoneNumberId ?? this.phoneNumberId);
}