fetchInvoice method
fetch an invoice from lnurl callback endpoint
Implementation
@override
Future<Map<String, dynamic>?> fetchInvoice(String callbacklink) async {
try {
return await httpDS.jsonRequest(callbacklink);
} catch (e) {
Logger.log.d(e);
return null;
}
}