Arguments typedef

Arguments = ({Map<Symbol, dynamic>? namedArguments, List? positionalArguments})

Represents a tuple of positional and named arguments for function calls. Used when validating or processing function applications in cells.

Contains:

  • positionalArguments: List of positional arguments
  • namedArguments: Map of named arguments (using Symbols as keys)

Implementation

typedef Arguments = ({List? positionalArguments, Map<Symbol, dynamic>? namedArguments});