VariableValueTypeMismatchException constructor

VariableValueTypeMismatchException(
  1. String variableName,
  2. DartBlockDataType expectedType,
  3. 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'.",
    );