CustomerImageModel constructor

CustomerImageModel({
  1. required int customerId,
  2. required String image,
  3. required DateTime lastUpdated,
})

Returns a new CustomerImageModel instance.

Implementation

CustomerImageModel({
  required this.customerId,
  required this.image,
  required this.lastUpdated,
});