clear method

Future<void> clear(
  1. ClearDetails details
)

Clears the setting, restoring any default value. details Which setting to clear. returns Called at the completion of the clear operation.

Implementation

Future<void> clear(ClearDetails details) async {
  await promiseToFuture<void>(_wrapped.clear(details.toJS));
}