FileSystemSize constructor

FileSystemSize({
  1. required int value,
  2. DateTime? timestamp,
  3. int? valueInIA,
  4. int? valueInStandard,
})

Implementation

FileSystemSize({
  required this.value,
  this.timestamp,
  this.valueInIA,
  this.valueInStandard,
});