Location constructor

Location({
  1. required String type,
  2. required String description,
})

Implementation

Location({
  required this.type,
  required this.description,
});