WalletApp constructor

const WalletApp({
  1. required String appName,
  2. required String name,
  3. required String bridgeUrl,
  4. required String image,
  5. required String aboutUrl,
  6. String? universalUrl,
  7. List<String>? platforms,
})

Implementation

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