ApplicationsResponse constructor

ApplicationsResponse({
  1. required List<Application> applications,
  2. required int currentRound,
  3. required String? nextToken,
})

Implementation

ApplicationsResponse({
  required this.applications,
  required this.currentRound,
  required this.nextToken,
});