NetworkInfo constructor

const NetworkInfo({
  1. required String bech32Hrp,
  2. required Uri lcdUrl,
  3. String name = '',
  4. String iconUrl = '',
  5. String? defaultTokenDenom,
})

Contains the information of a generic Cosmos-based network.

Implementation

const NetworkInfo({
  required this.bech32Hrp,
  required this.lcdUrl,
  this.name = '',
  this.iconUrl = '',
  this.defaultTokenDenom,
});