constValue method
Defines the Stack.value-accessor as a constant function that always returns the specified value.
Implementation
void constValue(num value) {
this.value = constant(value);
}
Defines the Stack.value-accessor as a constant function that always returns the specified value.
void constValue(num value) {
this.value = constant(value);
}