copyWith method

GetGuardBotWebAppUrl copyWith({
  1. int? queryId,
  2. WebAppOpenParameters? parameters,
})

Implementation

GetGuardBotWebAppUrl copyWith({
  int? queryId,
  WebAppOpenParameters? parameters,
}) => GetGuardBotWebAppUrl(
  queryId: queryId ?? this.queryId,
  parameters: parameters ?? this.parameters,
);