contextIds property

List<String>? get contextIds

Implementation

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

Implementation

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