licencePlateDetail method
Future<(UResponse<ULicencePlateDetailResponse> ?, UEmptyResponse?, String?)>
licencePlateDetail({
- required ULicencePlateDetailParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<ULicencePlateDetailResponse>?, UEmptyResponse?, String?)> licencePlateDetail({
required ULicencePlateDetailParams p,
Function(UResponse<ULicencePlateDetailResponse> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/inquiry/LicencePlateDetail", p.toMap(), _Api.one(ULicencePlateDetailResponse.fromMap), _Api.empty, onOk, onError, onException);