connect method

Future<bool> connect()

Powers on the RFID Module.

Implementation

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