mobileNumber property
String
get
mobileNumber
Retrieves the mobile number from the additional data.
This getter returns the value associated with the tag '02', which is
the mobile_number
field in the QRIS data. If no value is found, it returns
an empty string (''
).
Implementation
String get mobileNumber =>
_getDecodedAdditionalData.getValueByTag('02') ?? '';