getAllKeys method

Future<List<String>> getAllKeys()

Implementation

Future<List<String>> getAllKeys() async {
  return await _database?.getAllKeys() ?? [];
}