list method
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');
}