WireCheckBox constructor

const WireCheckBox({
  1. Key? key,
  2. required String text,
  3. required WireCheckBoxViewModel viewModel,
  4. GestureTapCallback? onPress,
})

Implementation

const WireCheckBox({
  Key? key,
  required this.text,
  required this.viewModel,
  this.onPress,
}) : super(key: key);