request method

Future request(
  1. String name, [
  2. LockOptions? options,
  3. LockGrantedCallback? callback
])

Implementation

Future<dynamic> request(String name,
        [LockOptions? options, LockGrantedCallback? callback]) =>
    js_util.promiseToFuture(js_util.callMethod(this, 'request',
        [name, options, callback == null ? null : allowInterop(callback)]));