CheckboxWithUserPrivacy constructor

const CheckboxWithUserPrivacy({
  1. Key? key,
  2. required bool value,
  3. ValueChanged<bool?>? onChanged,
  4. GestureTapCallback? onUserAgreementTap,
  5. GestureTapCallback? onPrivacyPolicyTap,
  6. OutlinedBorder? shape,
  7. Color? color = UCS.mainBlack,
  8. double fontSize = 12,
  9. Color? mainColor,
})

Implementation

const CheckboxWithUserPrivacy(
    {Key? key,
    required this.value,
    this.onChanged,
    this.onUserAgreementTap,
    this.onPrivacyPolicyTap,
    this.shape,
    this.color = UCS.mainBlack,
    this.fontSize = 12,
    this.mainColor})
    : super(key: key);