memberSet method

void memberSet(
  1. String id,
  2. dynamic value, {
  3. String? from,
  4. bool defineIfAbsent = false,
})

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