freewayTolls method

Future<(UResponse<UFreewayTollsResponse>?, UEmptyResponse?, String?)> freewayTolls({
  1. required UFreewayTollsParams p,
  2. dynamic onOk(
    1. UResponse<UFreewayTollsResponse> r
    )?,
  3. dynamic onError(
    1. UEmptyResponse e
    )?,
  4. dynamic onException(
    1. 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);