DispatchState constructor

DispatchState({
  1. required List jobs,
  2. required String createdAt,
  3. required String deletedAt,
})

Implementation

DispatchState({
  required this.jobs,
  required this.createdAt,
  required this.deletedAt,
});