ToggleText.text constructor

ToggleText.text({
  1. required String title,
  2. bool value = false,
  3. Color? colorOn,
  4. Color? colorOff,
  5. required ValueChanged<bool> onChanged,
  6. double? fontSize,
  7. bool onPrimary = false,
})

Implementation

ToggleText.text({required String title, this.value = false, this.colorOn, this.colorOff, required this.onChanged, this.fontSize, this.onPrimary = false})
  : _onWidget = title.text(),
    _offWidget = title.text();