frameIds property

List<int>? get frameIds

The IDs of specific frames to inject into.

Implementation

List<int>? get frameIds =>
    _wrapped.frameIds?.toDart.cast<int>().map((e) => e).toList();
set frameIds (List<int>? v)

Implementation

set frameIds(List<int>? v) {
  _wrapped.frameIds = v?.toJSArray((e) => e);
}