getObject method
Implementation
Future<Uint8List?> getObject(String key) async {
try {
final response = await _makeRequest(method: 'GET', path: key);
return response.statusCode == 200 ? response.body : null;
} catch (e) {
return null;
}
}