BsImage constructor

const BsImage({
  1. Key? key,
  2. required ImageProvider<Object> image,
  3. bool fluid = false,
  4. bool thumbnail = false,
  5. bool rounded = false,
  6. bool circle = false,
  7. AlignmentGeometry? alignment,
  8. double? width,
  9. double? height,
  10. BoxFit? fit,
  11. String? semanticLabel,
})

Creates a Bootstrap image.

Implementation

const BsImage({
  super.key,
  required this.image,
  this.fluid = false,
  this.thumbnail = false,
  this.rounded = false,
  this.circle = false,
  this.alignment,
  this.width,
  this.height,
  this.fit,
  this.semanticLabel,
});