forEach method

void forEach(FontFaceSetForEachCallback callback, [ Object thisArg ])

Source

void forEach(FontFaceSetForEachCallback callback, [Object thisArg]) {
  if (thisArg != null) {
    _blink.BlinkFontFaceSet.instance
        .forEach_Callback_2_(this, callback, thisArg);
    return;
  }
  _blink.BlinkFontFaceSet.instance.forEach_Callback_1_(this, callback);
  return;
}

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