fromJson static method

TankerkoenigStationFuel fromJson(
  1. Map<String, dynamic> json
)

Implementation

static TankerkoenigStationFuel fromJson(
  Map<String, dynamic> json,
) {
  return TankerkoenigStationFuel(
    json['category'],
    json['name'],
    json['price'],
    TankerkoenigStationFuelLastChange.fromJson(
      json['lastChange'],
    ),
  );
}