UpdatesState constructor

const UpdatesState({
  1. required int pts,
  2. required int qts,
  3. required DateTime date,
  4. required int seq,
  5. required int unreadCount,
})

Updates State constructor.

Implementation

const UpdatesState({
  required this.pts,
  required this.qts,
  required this.date,
  required this.seq,
  required this.unreadCount,
}) : super._();