TermsSection constructor

const TermsSection({
  1. Key? key,
  2. required bool acceptTerms,
  3. required ValueChanged<bool?> onChanged,
  4. UIConfig? uiConfig,
})

Implementation

const TermsSection({
  Key? key,
  required this.acceptTerms,
  required this.onChanged,
  this.uiConfig,
}) : super(key: key);