AppImage constructor

const AppImage({
  1. required String image,
  2. TextStyle? textStyle,
  3. double? height,
  4. double? width,
  5. Color? color,
  6. BorderRadius borderRadius = BorderRadius.zero,
  7. BoxFit? fit,
  8. ColorFilter? colorFilter,
  9. Key? key,
})

Implementation

const AppImage({
  required this.image,
  this.textStyle,
  this.height,
  this.width,
  this.color,
  this.borderRadius = BorderRadius.zero,
  this.fit,
  this.colorFilter,
  Key? key,
}) : super(key: key);