set method

Future<void> set(
  1. SetDetails details
)

Sets the value of a setting. details Which setting to change. returns Called at the completion of the set operation.

Implementation

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