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