txnId property
String?
get
txnId
Getter for _txnId
. Leads to UnsupportedError on iOs.
Implementation
String? get txnId {
if (io.Platform.isAndroid) {
return _txnId;
}
throw UnsupportedError('The attribute txnId is not available on iOS');
}