billNumber property

String get billNumber

Retrieves the bill number from the additional data.

This getter returns the value associated with the tag '01', which is the bill_number field in the QRIS data. If no value is found, it returns an empty string ('').

Implementation

String get billNumber => _getDecodedAdditionalData.getValueByTag('01') ?? '';