named property

Map<Symbol, dynamic>? named
getter/setter pair

The map of named parameters.

Symbols are represented by the literal # in Dart. So, if you need ({String name, int count}) in named parameters, you'd use {#name: 'roi', #count: 10}.

Implementation

Map<Symbol, dynamic>? named;