isSet method

Future<bool> isSet(
  1. String name
)

Check if the settings key with name is set.

Implementation

Future<bool> isSet(String name) async {
  var table = await _load();
  var schemaEntry = _getSchemaEntry(table, name);
  var path = _getPath(table);
  return await _backend.get(
          path + name, schemaEntry.defaultValue.signature) !=
      null;
}