ImageItem constructor

ImageItem([
  1. dynamic img
])

Implementation

ImageItem([dynamic img]) {
  if (img != null) {
    load(img);
  }
}