CustomFunctionInvocation constructor

CustomFunctionInvocation(
  1. CustomFunctionHandle handle,
  2. Map<String, Object?> args
)

Implementation

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