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