Dispatcher constructor Null safety
- {required Cubix cubix,
- required ActionBase action,
- required CancelToken cancelToken,
- required List<
Dispatcher> dispatching, - required ActionData data}
Implementation
Dispatcher({
required this.cubix,
required this.action,
required this.cancelToken,
required this.dispatching,
required this.data,
}) {
cancelToken.on(cancel: cancel);
}