I don't know how to change my code.
abstract class GeocoderState extends Equatable {}
class GeocoderInitialized extends GeocoderState {}
class GeocoderInitialized extends GeocoderState {
@override
List<Object> get props => null;
}
or
class GeocoderInitialized extends GeocoderState {
@override
List<Object> get props => [];
}
It's not possible to put anything ?
==
overrides really have a lot of pitfalls, huh. Mad e small PR to add a note in the docs felangel/equatable#47