instanceMemberGet method
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);
}