DatabaseStatus constructor

DatabaseStatus({
  1. required String health,
  2. required bool ready,
  3. required String engine,
  4. required String version,
  5. required int uptime,
  6. required DatabaseStatusConnections connections,
  7. required String syncMode,
  8. String? effectiveSyncMode,
  9. required bool syncDegraded,
  10. required int syncAcknowledgements,
  11. required int syncStandbyCount,
  12. required bool syncStateConfirmed,
  13. required List<DatabaseStatusReplica> replicas,
  14. required List<DatabaseStatusVolume> volumes,
})

Implementation

DatabaseStatus({
  required this.health,
  required this.ready,
  required this.engine,
  required this.version,
  required this.uptime,
  required this.connections,
  required this.syncMode,
  this.effectiveSyncMode,
  required this.syncDegraded,
  required this.syncAcknowledgements,
  required this.syncStandbyCount,
  required this.syncStateConfirmed,
  required this.replicas,
  required this.volumes,
});