CustomFunctionHandle constructor

CustomFunctionHandle({
  1. required String name,
  2. required Map<String, DslType> args,
  3. required DslType returnType,
})

Implementation

CustomFunctionHandle({
  required this.name,
  required Map<String, DslType> args,
  required this.returnType,
}) : args = UnmodifiableMapView(Map<String, DslType>.from(args));