LnUrlPayRequestData constructor

const LnUrlPayRequestData({
  1. required String callback,
  2. required int minSendable,
  3. required int maxSendable,
  4. required String metadataStr,
  5. required int commentAllowed,
  6. required String domain,
  7. required bool allowsNostr,
  8. String? nostrPubkey,
  9. String? lnAddress,
})

Implementation

const LnUrlPayRequestData({
  required this.callback,
  required this.minSendable,
  required this.maxSendable,
  required this.metadataStr,
  required this.commentAllowed,
  required this.domain,
  required this.allowsNostr,
  this.nostrPubkey,
  this.lnAddress,
});