mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 15:17:31 +00:00
19 lines
352 B
Dart
19 lines
352 B
Dart
import 'package:equatable/equatable.dart';
|
|
|
|
class RangeOfAqi extends Equatable {
|
|
final double min;
|
|
final double avg;
|
|
final double max;
|
|
final DateTime date;
|
|
|
|
const RangeOfAqi({
|
|
required this.min,
|
|
required this.avg,
|
|
required this.max,
|
|
required this.date,
|
|
});
|
|
|
|
@override
|
|
List<Object?> get props => [min, avg, max, date];
|
|
}
|