AwsCheckextButton constructor

AwsCheckextButton({
  1. Key? key,
  2. required bool value,
  3. required Text text,
  4. void onChanged(
    1. bool?
    )?,
  5. bool textCheck = false,
  6. bool expanded = false,
  7. double separated = 5,
})

It is a widget that serves to mark an option that is accompanied by a text and can be used in different ways.

Implementation

AwsCheckextButton({
  Key? key,
  required this.value,
  required this.text,
  this.onChanged,
  this.textCheck = false,
  this.expanded = false,
  this.separated = 5,
}) : super(key: key);