UndefinedCustomFunctionException constructor

UndefinedCustomFunctionException(
  1. String functionName
)

Implementation

UndefinedCustomFunctionException(this.functionName)
  : super(
      title: "Undefined Function",
      message: "Function '$functionName' is not defined.",
    );