DialogShownEvent constructor

DialogShownEvent({
  1. required String dialogId,
  2. required DialogType dialogType,
  3. required List<Account> accounts,
  4. required String title,
  5. String? subtitle,
})

Implementation

DialogShownEvent(
    {required this.dialogId,
    required this.dialogType,
    required this.accounts,
    required this.title,
    this.subtitle});