AssetImageIcon constructor

const AssetImageIcon({
  1. Key? key,
  2. required String asset,
  3. Color? color,
  4. double? height,
  5. double? width,
})

Implementation

const AssetImageIcon({
  super.key,
  required this.asset,
  this.color,
  double? height,
  double? width,
})  : _width = width,
      _height = height;