ImageReference constructor

ImageReference({
  1. required String path,
  2. required String name,
  3. String? description,
})

Implementation

ImageReference({
  required this.path,
  required this.name,
  this.description,
});