mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
Created GetRangeOfAqiParam
model.
This commit is contained in:
12
lib/pages/analytics/params/get_range_of_aqi_param.dart
Normal file
12
lib/pages/analytics/params/get_range_of_aqi_param.dart
Normal file
@ -0,0 +1,12 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
class GetRangeOfAqiParam extends Equatable {
|
||||
final DateTime date;
|
||||
|
||||
const GetRangeOfAqiParam({
|
||||
required this.date,
|
||||
});
|
||||
|
||||
@override
|
||||
List<Object?> get props => [date];
|
||||
}
|
Reference in New Issue
Block a user