copyWith method

DeepLinkInfo copyWith({
  1. FormattedText? text,
  2. bool? needUpdateApplication,
  3. dynamic extra,
  4. 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,
);