instanceMemberGet method

dynamic instanceMemberGet(
  1. dynamic instance,
  2. String id, {
  3. bool ignoreUndefined = false,
})

Default HTExternalClass constructor. Fetch a instance member of the Dart class by the id, in the form of

object.key

Implementation

dynamic instanceMemberGet(dynamic instance, String id,
    {bool ignoreUndefined = false}) {
  if (!ignoreUndefined) throw HTError.undefined(id);
}