disconnect method

Future<bool> disconnect()

Powers off the RFID Module.

Implementation

Future<bool> disconnect() async {
  final bool? success = await _channel.invokeMethod('disconnect');
  return success ?? false;
}