LoadPlacesResult constructor

LoadPlacesResult({
  1. required List<Place> places,
  2. required bool showLoading,
  3. required bool hasChanges,
})

Implementation

LoadPlacesResult({
  required this.places,
  required this.showLoading,
  required this.hasChanges,
});