whyThisAd method
Implementation
Widget whyThisAd() {
return Container(
width: (buttonWidth),
height: buttonHeight,
decoration: const BoxDecoration(
color: Colors.white,
),
child: FixGestureDetector(margin: const EdgeInsets.fromLTRB(0, 0, 0, 0), bgColor: Colors.white, text: StringsConsent.whyThisAd, size: 12, isIcon: true, tap: () {
setState(() {
whyThisClicked();
});
},
),
);
}