copyWith method

  1. @override
InternalLinkTypePhoneNumberConfirmation copyWith({
  1. String? hash,
  2. String? phoneNumber,
  3. dynamic extra,
  4. int? clientId,
})
override

Implementation

@override
InternalLinkTypePhoneNumberConfirmation copyWith({
  String? hash,
  String? phoneNumber,
  dynamic extra,
  int? clientId,
}) => InternalLinkTypePhoneNumberConfirmation(
  hash: hash ?? this.hash,
  phoneNumber: phoneNumber ?? this.phoneNumber,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);