LnurlResponse.fromJson constructor

LnurlResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

LnurlResponse.fromJson(Map<String, dynamic> json) {
  callback = json['callback'];
  maxSendable = json['maxSendable'];
  minSendable = json['minSendable'];
  metadata = json['metadata'];
  commentAllowed = json['commentAllowed'];
  tag = json['tag'];
  allowsNostr = json['allowsNostr'];
  nostrPubkey = json['nostrPubkey'];
}