StorageVolume constructor

const StorageVolume({
  1. required String id,
  2. required String roomId,
  3. required String name,
  4. required String subpath,
  5. required String description,
  6. required Map<String, dynamic> metadata,
  7. required Map<String, String> annotations,
  8. required bool provisioned,
  9. required DateTime createdAt,
  10. required DateTime updatedAt,
  11. String storageClass = 'standard',
  12. int? maxSizeMb,
  13. String phase = 'pending',
  14. String? reconcileError,
})

Implementation

const StorageVolume({
  required this.id,
  required this.roomId,
  required this.name,
  required this.subpath,
  required this.description,
  required this.metadata,
  required this.annotations,
  required this.provisioned,
  required this.createdAt,
  required this.updatedAt,
  this.storageClass = 'standard',
  this.maxSizeMb,
  this.phase = 'pending',
  this.reconcileError,
});