getContext method
Implementation
@override
Future<Result<Map<String, String>>> getContext({required String contextId}) {
final path = 'contexts/$contextId';
return http.get(
uri: Uri.parse('$baseUrl/$path').toString(),
success: (json) {
return json;
},
);
}