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