txnId property

String txnId

Getter for _txnId. Leads to UnsupportedError on iOs.

Implementation

String get txnId {
  if (Platform.isAndroid) {
    return _txnId;
  }
  throw UnsupportedError('The attribute txnId is not available on iOS');
}