load method

Future<Result> load()

Implementation

Future<Result> load() async {
  String response = await _instance.loadObject(KEY_OBJECT);
  return Result(sucess: response, failure: null);
}