ThemedIcon constructor

const ThemedIcon({
  1. Key? key,
  2. required String iconPath,
  3. double? size,
})

Implementation

const ThemedIcon({
  super.key,
  required this.iconPath,
  this.size,
});