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