buildTermsAndConditions property
Widget
get
buildTermsAndConditions
Implementation
Widget get buildTermsAndConditions => CheckboxListTile(
contentPadding: EdgeInsets.zero,
controlAffinity: ListTileControlAffinity.leading,
dense: true,
value: true,
onChanged: (value) {},
title: FxText(
'I agree to the [terms & Conditions] and [Privacy Policy]',
onTap: (index, text) {},
)
);