Request constructor
Request({})
Constructor with required url, path, status, and header, and optional log.
Implementation
Request(
{required this.url,
required this.path,
required this.status,
required this.message,
required this.header,
this.data,
this.log,
this.method = 'GET',
this.payload,
this.query,
this.timeRequest = '0 ms'});