vehicles_to_refuel property

List<Vehicle> get vehicles_to_refuel

Implementation

static List<Vehicle> get vehicles_to_refuel => [
  Vehicle(
    vehicleId: "T001",
    driverName: "John Doe",
    capacity: 300,
    registrationNumber: "ABC 123 GP",
    location: Location(latitude: -25.746111, longitude: 28.188056),
    status: "pending",
  ),
  Vehicle(
    vehicleId: "T002",
    driverName: "Jane Smith",
    capacity: 250,
    registrationNumber: "XYZ 456 GP",
    location: Location(latitude: -26.204444, longitude: 28.045556),
    status: "pending",
  ),
  Vehicle(
    vehicleId: "T003",
    driverName: "Alice Johnson",
    capacity: 400,
    registrationNumber: "LMN 789 GP",
    location: Location(latitude: -25.991111, longitude: 28.044444),
    status: "pending",
  ),
  Vehicle(
    vehicleId: "T004",
    driverName: "Michael Brown",
    capacity: 350,
    registrationNumber: "OPQ 321 GP",
    location: Location(latitude: -26.061111, longitude: 28.073056),
    status: "pending",
  ),
  Vehicle(
    vehicleId: "T005",
    driverName: "Emily White",
    capacity: 280,
    registrationNumber: "RST 654 GP",
    location: Location(latitude: -25.703056, longitude: 28.198056),
    status: "pending",
  ),
];