get<T> abstract method
Perform a GET request with typed response.
Implementation
Future<T> get<T>(
APIEndpoint endpoint, {
required bool requiresAuth,
required T Function(Map<String, dynamic>) fromJson,
});
Perform a GET request with typed response.
Future<T> get<T>(
APIEndpoint endpoint, {
required bool requiresAuth,
required T Function(Map<String, dynamic>) fromJson,
});