copyWith method
Implementation
DeepLinkInfo copyWith({FormattedText? text, bool? needUpdateApplication}) =>
DeepLinkInfo(
text: text ?? this.text,
needUpdateApplication:
needUpdateApplication ?? this.needUpdateApplication,
);