RestRequest constructor

const RestRequest({
  1. Map<String, String>? headers,
  2. String? method,
  3. Map<String, dynamic>? supplementalTopLevelData,
  4. String? topLevelKey,
  5. String? url,
})

Implementation

const RestRequest({
  this.headers,
  this.method,
  this.supplementalTopLevelData,
  this.topLevelKey,
  this.url,
});