transmit<T> method
Implementation
Future<T> transmit<T>(T command, {Duration? timeout}) async {
if (NfcPlus._bridge != null) return NfcPlus._bridge!.exchange(id, command);
return await NfcNativeDriver.exchangeData(command, timeout: timeout);
}