ImageModel constructor
ImageModel(})
Implementation
ImageModel(Model super.parent, super.id,
{dynamic url,
dynamic defaultvalue,
dynamic width,
dynamic height,
dynamic opacity,
dynamic fit,
dynamic filter,
dynamic flip,
dynamic interactive}) {
if (width != null) this.width = width;
if (height != null) this.height = height;
this.opacity = opacity;
this.url = url;
this.defaultvalue = defaultvalue;
this.fit = fit;
this.filter = filter;
this.flip = flip;
this.interactive = interactive;
}