addDomListenerOnce static method

MapsEventListener addDomListenerOnce(
  1. Object? instance,
  2. String? eventName,
  3. Function? handler, [
  4. bool? capture,
])

Implementation

static MapsEventListener addDomListenerOnce(
  Object? instance,
  String? eventName,
  Function? handler, [
  bool? capture,
]) =>
    callMethod(_Event$namespace, 'addDomListenerOnce', [
      instance,
      eventName,
      handler == null ? null : allowInterop(handler),
      capture
    ]);