UFreewayTollsParams.fromMap constructor

UFreewayTollsParams.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory UFreewayTollsParams.fromMap(Map<String, dynamic> json) => UFreewayTollsParams(
  licencePlate: json["licencePlate"],
  refresh: json["refresh"] ?? false,
);