copyWith method

DeepLinkInfo copyWith({
  1. FormattedText? text,
  2. bool? needUpdateApplication,
})

Implementation

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