arguments property

Map<String, dynamic>? arguments
final

The raw arguments: mapping, when the configuration declares one.

Nothing consumes this yet — it is parsed so the key is not rejected, and distribute validate warns that it has no effect. It was previously typed as Map<String, JobArguments> while being populated with raw maps, which crashed with a type error on any configuration that used it.

Implementation

final Map<String, dynamic>? arguments;