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