memberGet method

dynamic memberGet(
  1. String id, {
  2. String? from,
  3. bool isRecursive = false,
  4. bool ignoreUndefined = false,
})

Fetch a member by the id, in the form of

object.id

id must be of String type.

Implementation

dynamic memberGet(String id,
    {String? from, bool isRecursive = false, bool ignoreUndefined = false}) {
  throw HTError.undefined(id);
}