ListHealthChecksResponse constructor

ListHealthChecksResponse({
  1. required List<HealthCheck> healthChecks,
  2. required bool isTruncated,
  3. required String marker,
  4. required String maxItems,
  5. String? nextMarker,
})

Implementation

ListHealthChecksResponse({
  required this.healthChecks,
  required this.isTruncated,
  required this.marker,
  required this.maxItems,
  this.nextMarker,
});