RequestAction constructor

RequestAction(
  1. String path,
  2. String method, {
  3. String authority = "",
  4. String dispatcherKey = "",
  5. Map<String, String>? queryParams,
  6. bool isFetching = false,
})

Implementation

RequestAction(this.path, this.method,
    {this.authority = "",
    this.dispatcherKey = "",
    this.queryParams,
    this.isFetching = false})
    : this.timestamp = DateTime.now().millisecondsSinceEpoch;