entryPaths property

List<String> get entryPaths

The set of paths of the entries to be used for the action.

Implementation

List<String> get entryPaths =>
    _wrapped.entryPaths.toDart.cast<String>().map((e) => e).toList();
set entryPaths (List<String> v)

Implementation

set entryPaths(List<String> v) {
  _wrapped.entryPaths = v.toJSArray((e) => e);
}