transmitRaw method
Transmits raw data to the RFID reader and receives a response.
This protected method is used internally to transmit raw data to the RFID reader and receive a response. It should not be called directly by external code.
Parameters
data: The raw data to transmit as a Uint8List.
Returns
A Uint8List representing the raw response from the RFID reader.
Implementation
@protected
@visibleForTesting
Future<Uint8List> transmitRaw(Uint8List data) async {
getAtr();
return await FlutterRfidPlatform.instance.transmit(data);
}