copyWith method

InternalLinkTypePhoneNumberConfirmation copyWith({
  1. String? hash,
  2. String? phoneNumber,
})

Implementation

InternalLinkTypePhoneNumberConfirmation copyWith({
  String? hash,
  String? phoneNumber,
}) => InternalLinkTypePhoneNumberConfirmation(
  hash: hash ?? this.hash,
  phoneNumber: phoneNumber ?? this.phoneNumber,
);