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