getWithPath<T> abstract method
Perform a GET with custom path (for parameterized endpoints).
Implementation
Future<T> getWithPath<T>(
String path, {
required bool requiresAuth,
required T Function(Map<String, dynamic>) fromJson,
});