VariableValueTypeMismatchException constructor
VariableValueTypeMismatchException(
- String variableName,
- DartBlockDataType expectedType,
- Type gotType
Implementation
VariableValueTypeMismatchException(
this.variableName,
this.expectedType,
this.gotType,
) : super(
title: "Value Type Mismatch",
message:
"Value type mismatch for variable '$variableName': expected type '$expectedType', got '$gotType'.",
);