getInvoiceHash static method

Future<String?> getInvoiceHash(
  1. String filename
)

Retrieves the hash value of a cleared invoice based on the filename.

This method internally calls _getInvoiceHash.

Returns the hash string if successful, otherwise null.

Implementation

static Future<String?> getInvoiceHash(String filename) async =>
    _getInvoiceHash(filename);