unset method

Future<void> unset(
  1. String name
)

Removes a setting value. The key will now return the default value specified in the GSetting schema.

Implementation

Future<void> unset(String name) async {
  var table = await _load();
  var path = _getPath(table);
  await _backend.set({path + name: null});
}