getStaticField method
Implementation
Object? getStaticField(String name) {
if (staticFields.containsKey(name)) {
final fieldValue = staticFields[name];
if (fieldValue is LateVariable) {
// Return the value of the late variable (will initialize if needed)
return fieldValue.value;
}
return fieldValue;
}
throw RuntimeD4rtException(
"Undefined static field '$name' on class '$this.name'.");
}