txnRef property

String? 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');
}