Event constructor

Event({
  1. required bool isSuccessful,
  2. required String? error,
})

Implementation

Event({
  required this.isSuccessful,
  required this.error,
});