MakeHoldInvoiceRequest constructor

const MakeHoldInvoiceRequest({
  1. required dynamic amountMsat,
  2. String? description,
  3. String? descriptionHash,
  4. int? expiry,
  5. required String paymentHash,
})

Implementation

const MakeHoldInvoiceRequest({
  required super.amountMsat,
  super.description,
  super.descriptionHash,
  super.expiry,
  required this.paymentHash,
}) : super(method: NwcMethod.MAKE_HOLD_INVOICE);