BasicImage constructor

const BasicImage(
  1. String path, {
  2. Key? key,
  3. double? width,
  4. double? height,
  5. BoxFit? fit,
})

Implementation

const BasicImage(
  this.path, {
  super.key,
  this.width,
  this.height,
  this.fit,
});