ImageModel constructor

ImageModel({
  1. int? id,
  2. String? src,
  3. String? name,
  4. String? alt,
})

Implementation

ImageModel({
  this.id,
  this.src,
  this.name,
  this.alt,
});