IconTextView constructor

const IconTextView({
  1. Key? key,
  2. required IconData icon,
  3. required String text,
  4. Color? color,
  5. double? iconSize,
  6. TextStyle? textStyle,
})

Implementation

const IconTextView({
  super.key,
  required this.icon,
  required this.text,
  this.color,
  this.iconSize,
  this.textStyle,
});