Untitled
unknown
plain_text
a year ago
438 B
6
Indexable
import 'package:equatable/equatable.dart';
import 'charger_station.dart';
class Filter extends Equatable {
final double minimumPower;
final List<String> connectors;
final List<ChargeStation> chargeStations;
const Filter({
required this.minimumPower,
required this.connectors,
required this.chargeStations,
});
@override
List<Object> get props => [minimumPower, connectors, chargeStations];
}
Editor is loading...
Leave a Comment