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