copyWith method
Implementation
InternalLinkTypeUserPhoneNumber copyWith({
String? phoneNumber,
String? draftText,
bool? openProfile,
}) => InternalLinkTypeUserPhoneNumber(
phoneNumber: phoneNumber ?? this.phoneNumber,
draftText: draftText ?? this.draftText,
openProfile: openProfile ?? this.openProfile,
);