call method

Future<T> call(
  1. void call(
    1. E e
    )
)

Implementation

Future<T> call(void Function(E e) call) => then((o) => o.call(call));