wrongPriceDiesel method

Future<int> wrongPriceDiesel(
  1. String id,
  2. double price
)

Implementation

Future<int> wrongPriceDiesel(
  String id,
  double price,
) =>
    Complaint(host, apikey).post(
      id,
      CorrectionType.wrongPriceDiesel,
      price.toString(),
    );