copyWith method

StorageStatisticsByFileType copyWith({
  1. FileType? fileType,
  2. int? size,
  3. int? count,
})

Implementation

StorageStatisticsByFileType copyWith({
  FileType? fileType,
  int? size,
  int? count,
}) =>
    StorageStatisticsByFileType(
      fileType: fileType ?? this.fileType,
      size: size ?? this.size,
      count: count ?? this.count,
    );