FxRadioButton<T> constructor

const FxRadioButton<T>({
  1. Key? key,
  2. required T value,
  3. required T? groupValue,
  4. required ValueChanged<T?> onChanged,
  5. String? text,
  6. double size = 16.0,
  7. bool toggleable = false,
  8. String activeImg = "images/ic_trans_price_change_select.png",
  9. String fillImg = "images/ic_trans_price_change_unselect.png",
})

Implementation

const FxRadioButton({
  Key? key,
  required this.value,
  required this.groupValue,
  required this.onChanged,
  this.text,
  this.size = 16.0,
  this.toggleable = false,
  this.activeImg = "images/ic_trans_price_change_select.png",
  this.fillImg = "images/ic_trans_price_change_unselect.png",
}) : super(key: key);