SelectWalletEvent constructor

SelectWalletEvent({
  1. required String name,
  2. String? explorerId,
  3. AnalyticsPlatform? platform,
  4. int? walletRank,
  5. int? displayIndex,
  6. String? view,
})

Implementation

SelectWalletEvent({
  required String name,
  String? explorerId,
  AnalyticsPlatform? platform,
  int? walletRank,
  int? displayIndex,
  String? view,
}) : _name = name,
     _explorerId = explorerId,
     _platform = platform?.name,
     _walletRank = walletRank,
     _displayIndex = displayIndex,
     _view = view;