list method

Future<List<String>> list()

Gets the names of the settings keys available. If the schema is not installed will throw a GSettingsSchemaNotInstalledException.

Implementation

Future<List<String>> list() async {
  var table = await _load();
  return table.list(dir: '', type: 'v');
}