Food constructor

const Food(
  1. {required String name,
  2. String? image,
  3. String? city,
  4. double? distance}
)

Implementation

const Food({
  required this.name,
  this.image,
  this.city,
  this.distance,
});