getConsumptionTax method

Future<ConsumptionTaxDto?> getConsumptionTax(
  1. DateTime? date
)

Implementation

Future<ConsumptionTaxDto?> getConsumptionTax (
  DateTime? date
) async {
  String path = "/pub/consumption-tax/$date";
  return ConsumptionTaxDto.fromJson(
    await get(path, requireAuthorization:true) ?? {}
  );
}