toBuild method
dynamic
toBuild()
Implementation
toBuild(){
return RadioListTile(
key: key,
value: _value,
groupValue: _groupValue,
onChanged: _onChanged,
toggleable: _toggleable,
activeColor: _activeColor,
title: _title,
subtitle: _subtitle,
isThreeLine: _isThreeLine,
dense: _dense,
secondary: _secondary,
selected: _selected,
controlAffinity: _controlAffinity,
autofocus: _autofocus,
contentPadding: _contentPadding,
shape: _shape,
tileColor: _tileColor,
selectedTileColor: _selectedTileColor
);
}