operator [] method - JSObjectUnsafeUtilExtension extension - dart:js_interop_unsafe library (original) (raw)
JSAny? operator [](
- String property )
Shorthand helper for getProperty to get the value of the property keyproperty
of this JSObject, but takes and returns a Dart value.
Implementation
JSAny? operator [](String property) => getProperty(property.toJS);