ImageElement constructor

ImageElement({
  1. dynamic url,
  2. dynamic data,
  3. int width = 1,
  4. int height = 1,
  5. int depth = 1,
})

Implementation

ImageElement({
  this.url,
  this.data,
  this.width = 1,
  this.height = 1,
  this.depth = 1,
});