Nip05 constructor

Nip05({
  1. required String pubKey,
  2. required String nip05,
  3. bool valid = false,
  4. int? networkFetchTime,
  5. List<String>? relays = const [],
})

creates a new Nip05 instance nip05 the nip05 identifier valid whether the nip05 is valid networkFetchTime the last time the nip05 was checked relays the relays associated with the nip05

Implementation

Nip05({
  required this.pubKey,
  required this.nip05,
  this.valid = false,
  this.networkFetchTime,
  this.relays = const [],
});