ImageAsset constructor

ImageAsset({
  1. int? height,
  2. String? kind,
  3. String? name,
  4. String? url,
  5. int? width,
})

Implementation

ImageAsset({
  this.height,
  this.kind,
  this.name,
  this.url,
  this.width,
});