LNInvoice constructor
const
LNInvoice({
- required String bolt11,
- required Network network,
- required String payeePubkey,
- required String paymentHash,
- String? description,
- String? descriptionHash,
- int? amountMsat,
- required int timestamp,
- required int expiry,
- required List<
RouteHint> routingHints, - required Uint8List paymentSecret,
- required int minFinalCltvExpiryDelta,
Implementation
const LNInvoice({
required this.bolt11,
required this.network,
required this.payeePubkey,
required this.paymentHash,
this.description,
this.descriptionHash,
this.amountMsat,
required this.timestamp,
required this.expiry,
required this.routingHints,
required this.paymentSecret,
required this.minFinalCltvExpiryDelta,
});