call<B> method

  1. @override
IOOption<B> call<B>(
  1. covariant IOOption<B> chain
)
override

Chain multiple IOOption functions.

Implementation

@override
IOOption<B> call<B>(covariant IOOption<B> chain) => flatMap((_) => chain);