MTipRow constructor

MTipRow({
  1. required String image,
  2. required String tipText,
  3. List<String>? highLightText,
  4. VoidCallback? onTap,
})

Implementation

MTipRow({
  required this.image,
  required this.tipText,
  this.highLightText,
  this.onTap,
});