NativeAppIconWidget constructor

const NativeAppIconWidget({
  1. double? width = 40,
  2. double? height = 40,
  3. BoxFit? fit = BoxFit.cover,
  4. BlendMode? colorBlendMode,
  5. Color? color,
  6. Animation<double>? opacity,
  7. AlignmentGeometry? alignment,
  8. EdgeInsetsGeometry? margin,
  9. BoxShape shape = BoxShape.rectangle,
  10. BorderRadius? borderRadius,
  11. Key? key,
})

Implementation

const NativeAppIconWidget({
  this.width = 40,
  this.height = 40,
  this.fit = BoxFit.cover,
  this.colorBlendMode,
  this.color,
  this.opacity,
  this.alignment,
  this.margin,
  this.shape = BoxShape.rectangle,
  this.borderRadius,
  Key? key,
}) : super(key: key);