bind<U> abstract method
U
bind<U>({
- required U loading(),
- required U got(
- T
- U failure(
- E
Implementation
U bind<U>({
required U Function() loading,
required U Function(T) got,
U Function(E)? failure,
});