CacheStatistics
缓存文件的统计数据。
Dart
class CacheStatistics {
const CacheStatistics({this.fileSize, this.cacheSize, this.downloadSize});
(name: 'fileSize')
final int? fileSize;
(name: 'cacheSize')
final int? cacheSize;
(name: 'downloadSize')
final int? downloadSize;
factory CacheStatistics.fromJson(Map<String, dynamic> json) =>
_$CacheStatisticsFromJson(json);
Map<String, dynamic> toJson() => _$CacheStatisticsToJson(this);
}
fileSize
本次播放的媒体文件的大小,单位为字节。
cacheSize
本次播放的媒体文件已缓存的数据大小,单位为字节。
downloadSize
本次播放已下载的媒体文件大小,单位为字节。