makeRequest<T> method
Make a unary request for task with JSON encodable params.
Implementation
Future<T> makeRequest<T>(Task task, Map<String, Object?> params,
T Function(Map<String, Object?>) parse) =>
_client.makeRequest(taskUri(task), params).then(parse);