operator [] method - JSObjectUnsafeUtilExtension extension - dart:js_interop_unsafe library (original) (raw)

description

JSAny? operator [](

  1. 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);