stop static method

Future<void> stop()

Implementation

static Future<void> stop() async {
  _active = false;
  if (_bridge == null) await NfcNativeDriver.closeSession();
  _stateStream.add(NfcPhase.standby);
}