FreeSpaceResponseParam constructor

const FreeSpaceResponseParam({
  1. required String path,
  2. required num sizeBytes,
  3. num? totalSize,
})

Implementation

const FreeSpaceResponseParam({
  required this.path,
  required this.sizeBytes,
  this.totalSize,
});