YImage constructor

YImage(
  1. double? width,
  2. double? height,
  3. String url, {
  4. BoxFit fit = BoxFit.contain,
  5. String? imagePlaceHolder,
})

Implementation

YImage(
  this.width,
  this.height,
  this.url, {
  this.fit = BoxFit.contain,
  this.imagePlaceHolder,
});