History constructor

History({
  1. required List<HistoryEvent> events,
  2. String? nextPageToken,
})

Implementation

History({
  required this.events,
  this.nextPageToken,
});