InfoBox constructor

const InfoBox({
  1. Key? key,
  2. required String text,
  3. required String subText,
})

Implementation

const InfoBox({super.key, required this.text, required this.subText});