YYRadioListTile constructor

YYRadioListTile({
  1. Key? key,
  2. List<RadioItem>? items,
  3. dynamic intialValue,
  4. Color? color,
  5. Color? activeColor,
  6. dynamic onChanged(
    1. int
    )?,
})

Implementation

YYRadioListTile({
  Key? key,
  this.items,
  this.intialValue,
  this.color,
  this.activeColor,
  this.onChanged,
})  : assert(items != null),
      super(key: key);