class Courier { Courier({ required this.name, required this.surname, required this.id, required this.phone, }); final String name; final String surname; final String phone; final int id; }