function

  1. @Deprecated("Internal Use Only")
void argsSafeForTypedInterop(Iterable args)

Check that that if any elements of args are Function it is safe to pass to JavaScript. To make a function safe, call allowInterop or allowInteropCaptureThis.

Source

@Deprecated("Internal Use Only")
void argsSafeForTypedInterop(Iterable args) {
  for (var arg in args) {
    safeForTypedInterop(arg);
  }
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-js/argsSafeForTypedInterop.html