copyWith method

SendWebAppCustomRequest copyWith({
  1. int? botUserId,
  2. String? method,
  3. String? parameters,
})

Implementation

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