getHUDetailsByMaterialBatch method
Implementation
Future<Response<Json>> getHUDetailsByMaterialBatch({
required String material,
required String batch,
Options? getMaterialByBatchOptions,
}) async {
return await client.get(
'${HUEndpoints.huMaterials}/$material/batch/$batch',
options: getMaterialByBatchOptions,
);
}