contexts property

List<ContextType>? get contexts

Implementation

List<ContextType>? get contexts => _wrapped.contexts?.toDart
    .cast<$js.ContextType>()
    .map((e) => ContextType.fromJS(e))
    .toList();
set contexts (List<ContextType>? v)

Implementation

set contexts(List<ContextType>? v) {
  _wrapped.contexts = v?.toJSArray((e) => e.toJS);
}