SearchApplicationsResponse constructor

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

Implementation

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