toJson property

Map<String, dynamic> get toJson

/very unpolished version that only works for my kind of post req

Implementation

Map<String, dynamic> get toJson => {
      'type': 'Request',
      'url': this.url.toString(),
      'headers': this.headers,
      'body': this.body,
      'encoding': this.encoding,
      'method': this.method,
    };