WalletApp constructor

const WalletApp({
  1. required String name,
  2. required String bridgeUrl,
  3. required String image,
  4. required String aboutUrl,
  5. String? universalUrl,
})

Implementation

const WalletApp({
  required this.name,
  required this.bridgeUrl,
  required this.image,
  required this.aboutUrl,
  this.universalUrl,
});