getCreateFunction method

FunctionDefinition? getCreateFunction(
  1. String functionName
)

Implementation

FunctionDefinition? getCreateFunction(String functionName) {
  return functions[functionName] ??
      defaultFunctions[functionName] ??
      _buildInFunctions[functionName];
}