UFreewayTollsResponse constructor

UFreewayTollsResponse({
  1. String? totalPrice,
  2. List<UFreewayTollsItem>? items,
  3. bool isCached = false,
  4. DateTime? cachedAt,
  5. DateTime? cacheExpiresAt,
})

Implementation

UFreewayTollsResponse({
  this.totalPrice,
  this.items,
  this.isCached = false,
  this.cachedAt,
  this.cacheExpiresAt,
});