ExpressionValueTypeMismatchException constructor
ExpressionValueTypeMismatchException(
- DartBlockExpressionValue<
dynamic, DartBlockValueTreeNode> dynamicValue, - dynamic concreteValue,
- Type expectedType,
- Type gotType,
Implementation
ExpressionValueTypeMismatchException(
this.dynamicValue,
this.concreteValue,
this.expectedType,
this.gotType,
) : super(
title: "Value Type Mismatch",
message:
"Value type mismatch for '${dynamicValue.toString()}': expected type '$expectedType', got '$gotType' ($concreteValue).",
);