Untitled
unknown
plain_text
5 months ago
438 B
2
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