Chain constructor

Chain({
  1. required String chainId,
  2. required String name,
  3. required String symbol,
  4. required String iconUrl,
  5. required int threshold,
})

Implementation

Chain({
  required this.chainId,
  required this.name,
  required this.symbol,
  required this.iconUrl,
  required this.threshold,
});