BitcoinAddressData constructor

const BitcoinAddressData({
  1. required String address,
  2. required Network network,
  3. int? amountSat,
  4. String? label,
  5. String? message,
})

Implementation

const BitcoinAddressData({
  required this.address,
  required this.network,
  this.amountSat,
  this.label,
  this.message,
});