ImageTab constructor

const ImageTab({
  1. Key? key,
  2. Widget? image,
  3. String? imgSource,
  4. ImageProvider<Object>? imageProvider,
  5. WrapperModel? wrapperModel,
  6. String? label,
  7. bool? rotate,
  8. int? rotateTurns,
  9. double? height,
  10. double? width,
  11. double spacing = 4,
  12. bool? vertical,
  13. BorderRadius? borderRadius,
  14. BoxFit? fit,
})

Implementation

const ImageTab({
  super.key,
  this.image,
  this.imgSource,
  this.imageProvider,
  super.wrapperModel,
  super.label,
  super.rotate,
  super.rotateTurns,
  super.height,
  this.width,
  this.spacing = 4,
  this.vertical,
  this.borderRadius,
  this.fit,
});