getCreateFunction method

CreateTransformFunction? getCreateFunction(
  1. String functionName
)

Implementation

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