wrongLocation method

Future<int> wrongLocation(
  1. String id,
  2. LatLng location
)

Implementation

Future<int> wrongLocation(
  String id,
  LatLng location,
) =>
    Complaint(host, apikey).post(
      id,
      CorrectionType.wrongPetrolStationLocation,
      "${location.latitude},${location.longitude}",
    );