getValueDirect method

void getValueDirect(
  1. List<int> buffer,
  2. int offset
)

Implementation

void getValueDirect(List<int> buffer, int offset) {
  var v = targetObject.getProperty(propertyName);
  buffer[offset] = v;
}