RestRequest constructor
RestRequest({})
Implementation
RestRequest(
{required this.method,
required this.url,
this.requestConverterType,
this.responseConverterType,
Map<String, String>? headers,
this.body,
this.encoding})
: headers = {...(headers ?? {})};