readParkingPlateStatus method
Future<(UResponse<UParkingPlateStatusResponse> ?, UEmptyResponse?, String?)>
readParkingPlateStatus({
- required UParkingPlateStatusParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<UParkingPlateStatusResponse>?, UEmptyResponse?, String?)> readParkingPlateStatus({
required UParkingPlateStatusParams p,
Function(UResponse<UParkingPlateStatusResponse> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/parking/ReadParkingPlateStatus", p.toMap(), _Api.one(UParkingPlateStatusResponse.fromMap), _Api.empty, onOk, onError, onException);