memberGet method
dynamic
memberGet(})
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);
}