CallbackParams constructor

CallbackParams([
  1. List? positional,
  2. Map<Symbol, dynamic>? named
])

Creates a new CallbackParams object.

The positional parameter is optional and contains the list of positional parameters. The named parameter is also optional and contains the named parameters.

Implementation

CallbackParams([this.positional, this.named]);