CustomFunctionMissingReturnValueException constructor

CustomFunctionMissingReturnValueException(
  1. String functionName,
  2. DartBlockDataType returnType
)

Implementation

CustomFunctionMissingReturnValueException(this.functionName, this.returnType)
  : super(
      title: "Function Missing Return Value",
      message:
          "Function '$functionName' must return a value of type $returnType.",
    );