MakerInfo constructor

const MakerInfo({
  1. required String type,
  2. required int id,
  3. required double lat,
  4. required double lng,
  5. required String name,
  6. required String address,
  7. required String phone,
  8. required String img,
  9. required String fax,
  10. required String email,
  11. required RoutingInfo? routingInfo,
})

Implementation

const MakerInfo({
  required this.type,
  required this.id,
  required this.lat,
  required this.lng,
  required this.name,
  required this.address,
  required this.phone,
  required this.img,
  required this.fax,
  required this.email,
  required this.routingInfo,
});