copyWith method
Implementation
SystemUptime copyWith({
double? bootTime,
double? uptime,
String? uptimeFormatted,
DateTime? bootDate,
}) {
return SystemUptime(
bootTime: bootTime ?? this.bootTime,
uptime: uptime ?? this.uptime,
uptimeFormatted: uptimeFormatted ?? this.uptimeFormatted,
bootDate: bootDate ?? this.bootDate,
);
}