getValue method
Implementation
@override
num getValue(DartBlockArbiter arbiter) {
final numericValue = value.getValue(arbiter);
if (numericValue == null || numericValue is! num) {
throw DynamicValueTypeMismatchException(
value,
numericValue,
num,
numericValue.runtimeType,
);
}
return numericValue;
}