VIconLabel constructor

const VIconLabel({
  1. Key? key,
  2. required IconData icon,
  3. required String label,
  4. VIconLabelSize size = VIconLabelSize.medium,
})

Implementation

const VIconLabel({
  super.key,
  required this.icon,
  required this.label,
  this.size = VIconLabelSize.medium,
});