instanceSubGet method

dynamic instanceSubGet(
  1. dynamic instance,
  2. dynamic key
)

Fetch a instance member of the Dart class by the id, in the form of

object[key]

Implementation

dynamic instanceSubGet(dynamic instance, dynamic key) => instance[key];