getAllFromDictionary method

Future<Map<String, Object>> getAllFromDictionary(
  1. List<String> keys
)

Implementation

Future<Map<String, Object>> getAllFromDictionary(List<String> keys) async {
  final Map<String, Object> fromDictionary =
      await _store.getAllFromDictionary(keys);
  return fromDictionary;
}