SignalAction<T> constructor
- required String name,
- required Future<
T> execute(), - void after(
- T result
- void onError(
- Object error,
- StackTrace stackTrace
Implementation
SignalAction({
required this.name,
required this.execute,
this.after,
this.onError,
});