ImageElement constructor

ImageElement({
  1. dynamic url,
  2. String? src,
  3. dynamic data,
  4. num width = 0,
  5. num height = 0,
  6. int depth = 0,
})

Implementation

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