QueryOptions<T> constructor

const QueryOptions<T>({
  1. T convertor(
    1. Map<String, dynamic>? json
    )?,
  2. String method = "GET",
  3. Object? requestBody,
})

Implementation

const QueryOptions({
  this.convertor,
  this.method = "GET",
  this.requestBody,
});