copyWith method
Implementation
GetWebAppUrl copyWith({
int? botUserId,
String? url,
WebAppOpenParameters? parameters,
}) => GetWebAppUrl(
botUserId: botUserId ?? this.botUserId,
url: url ?? this.url,
parameters: parameters ?? this.parameters,
);