instanceSubGet method
dynamic
instanceSubGet(
- dynamic instance,
- 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];