RequestModel constructor
RequestModel({
- Map<
String, dynamic> ? requestHeader, - Map<
String, List< ? responseHeader,String> > - String? url,
- int? requestContentLength,
- int? responseContentLength,
- bool isFormatedResponse = false,
- String? curl,
- MockApi? mockApi,
- int? totalFilesSize,
- dynamic response,
- int? startTime,
- int? endTime,
- dynamic requestBody,
- Map<
String, dynamic> ? queryParams, - String? message,
- int? httpCode,
- String? method,
- List<
UploadFile> ? uploadFiles, - bool? isSuccess,
- int? responseTime,
- String? responseCode,
- String? responseCodeTitle,
- int? id,
Implementation
RequestModel(
{this.requestHeader,
this.responseHeader,
this.url,
this.requestContentLength,
this.responseContentLength,
this.isFormatedResponse = false,
this.curl,
this.mockApi,
this.totalFilesSize,
this.response,
this.startTime,
this.endTime,
this.requestBody,
this.queryParams,
this.message,
this.httpCode,
this.method,
this.uploadFiles,
this.isSuccess,
this.responseTime,
this.responseCode,
this.responseCodeTitle,
this.id});