Imagen constructor

Imagen({
  1. String name = 'imagen',
  2. List<String>? value,
  3. bool no_update = false,
  4. bool required = false,
  5. String? label,
})

Implementation

Imagen({
  super.name = 'imagen',
  super.value,
  super.no_update,
  super.required = false,
  super.label,
});