TermsOfService constructor

TermsOfService({
  1. FormattedText? text,
  2. required int minUserAge,
  3. required bool showPopup,
})

Implementation

TermsOfService({
  this.text,
  required this.minUserAge,
  required this.showPopup,
});