onClosed property

Stream<void> get onClosed

Fires when the EMDK connection is closed.

Implementation

Stream<void> get onClosed =>
    _lifecycle.where((e) => e.phase == EmdkLifecyclePhase.closed).map((_) {});