getWithPath<T> method
Perform a GET with custom path (for parameterized endpoints).
Implementation
@override
Future<T> getWithPath<T>(
String path, {
required bool requiresAuth,
required T Function(Map<String, dynamic>) fromJson,
}) async {
final responseData =
await _getRawWithPath(path, requiresAuth: requiresAuth);
return _decodeResponse(responseData, fromJson);
}