set method
Implementation
Future set(String name, String value, [Map? options]) {
var options_dict = null;
if (options != null) {
options_dict = convertDartToNative_Dictionary(options);
}
return promiseToFuture(
JS("", "#.set(#, #, #)", this, name, value, options_dict));
}