RequestData constructor
RequestData({})
Implementation
RequestData({
required this.method,
required this.baseUrl,
Map<String, String>? headers,
Map<String, String>? params,
this.body,
this.encoding,
}) : headers = headers ?? {},
params = params ?? {};