copyWith method
Implementation
AtomicRequest copyWith({
String? method,
Uri? uri,
Map<String, String>? headers,
dynamic body,
}) {
return AtomicRequest(
method: method ?? this.method,
uri: uri ?? this.uri,
headers: headers ?? this.headers,
body: body ?? this.body,
);
}