CustomFunctionInvocation constructor
CustomFunctionInvocation(
- CustomFunctionHandle handle,
- Map<
String, Object?> args
Implementation
CustomFunctionInvocation(this.handle, Map<String, Object?> args)
: args = UnmodifiableMapView(
args.map((key, value) => MapEntry(key, normalizeExpression(value))),
);