MaterialIcon constructor

const MaterialIcon({
  1. Key? key,
  2. MaterialIconController? controller,
  3. dynamic icon,
  4. Color? tint = Colors.grey,
  5. double? size = 24,
  6. BoxFit? fit,
})

Implementation

const MaterialIcon({
  super.key,
  this.controller,
  this.icon,
  this.tint = Colors.grey,
  this.size = 24,
  this.fit,
});