Evt<T> typedef

Evt<T> = Event<T>

When the Event class was created, Flutter did not have any class named Event. Now there is. For this reason, this typedef allows you to use Evt instead. You can hide one of them, by importing AsyncRedux like this: import 'package:async_redux/async_redux.dart' hide Event; or import 'package:async_redux/async_redux.dart' hide Evt;

Implementation

typedef Evt<T> = Event<T>;