memberSet method
Assign a value to a member by the id, in the form of
object.id = value
id must be of String type.
Implementation
void memberSet(String id, dynamic value,
{String? from, bool defineIfAbsent = false}) {
throw HTError.undefined(id);
}