listKeys method

Future<List<String>> listKeys()

Implementation

Future<List<String>> listKeys() async {
  final map = await toMap();

  return map.keys.toList();
}