getDefault abstract method

Future<RequestResponse> getDefault({
  1. required String key,
  2. String? parent,
})

Gets the value given the key. Can specify the parent if the key is duplicated under a different parent.

Implementation

Future<RequestResponse<dynamic>> getDefault(
    {required String key, String? parent});