entryPaths property

List<String> get entryPaths

List of paths of entries for the list of actions.

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);
}