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