FunctionNotSupportedException constructor

FunctionNotSupportedException({
  1. required String functionName,
})

Implementation

FunctionNotSupportedException({required String functionName}) {
  this.message = "Function Not Supported: $functionName";
}