name property

String get name

Retrieves the Merchant's Name from the QR code data.

The Merchant Name is extracted directly from the QR code _raw data. If not available, an empty string is returned.

Returns:

  • The Merchant Name as a string, or an empty string if not available.

Implementation

String get name => _raw['merchant_name'] ?? '';