SelectWalletEvent constructor

SelectWalletEvent({
  1. required String name,
  2. required String explorerId,
  3. AnalyticsPlatform? platform,
})

Implementation

SelectWalletEvent({
  required String name,
  required String explorerId,
  AnalyticsPlatform? platform,
})  : _name = name,
      _explorerId = explorerId,
      _platform = platform?.name;