copyWith method
NetworkStatisticsEntryCall
copyWith({
- NetworkType? networkType,
- int? sentBytes,
- int? receivedBytes,
- double? duration,
override
Implementation
@override
NetworkStatisticsEntryCall copyWith({
NetworkType? networkType,
int? sentBytes,
int? receivedBytes,
double? duration,
}) => NetworkStatisticsEntryCall(
networkType: networkType ?? this.networkType,
sentBytes: sentBytes ?? this.sentBytes,
receivedBytes: receivedBytes ?? this.receivedBytes,
duration: duration ?? this.duration,
);