GetRequest<T> constructor
const
GetRequest<T> ({
- required String endpoint,
- T fromJson(
- dynamic json
- String version = '',
- Map<
String, dynamic> ? query, - ApiGetRequestOptions? options,
Implementation
const GetRequest({
required super.endpoint,
super.fromJson,
super.version = '',
super.query,
ApiGetRequestOptions? options,
}) : getOptions = options,
super(options: options);