copyWith method

SendCustomRequest copyWith({
  1. String? method,
  2. String? parameters,
})

Implementation

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