copyWith method
NetworkStatisticsEntryFile
copyWith({
- FileType? fileType,
- NetworkType? networkType,
- int? sentBytes,
- int? receivedBytes,
override
Implementation
@override
NetworkStatisticsEntryFile copyWith({
FileType? fileType,
NetworkType? networkType,
int? sentBytes,
int? receivedBytes,
}) => NetworkStatisticsEntryFile(
fileType: fileType ?? this.fileType,
networkType: networkType ?? this.networkType,
sentBytes: sentBytes ?? this.sentBytes,
receivedBytes: receivedBytes ?? this.receivedBytes,
);