childIds property

List<String> get childIds

Implementation

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

Implementation

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