copyWith method

InternalLinkTypeUserPhoneNumber copyWith({
  1. String? phoneNumber,
  2. String? draftText,
  3. bool? openProfile,
})

Implementation

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