RawIconView constructor

const RawIconView({
  1. Key? key,
  2. required dynamic icon,
  3. BoxFit? fit,
  4. double? size,
  5. Color? tint,
  6. BlendMode tintMode = BlendMode.srcIn,
})

Implementation

const RawIconView({
  super.key,
  required this.icon,
  this.fit,
  this.size,
  this.tint,
  this.tintMode = BlendMode.srcIn,
});