bind<U> abstract method

U bind<U>({
  1. required U loading(),
  2. required U got(
    1. T
    ),
  3. U failure(
    1. E
    )?,
})

Implementation

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