getIsSelectableIcon method
Implementation
Widget? getIsSelectableIcon() {
if (isSelectable == false) {
return null;
} else {
return Padding(
padding: const EdgeInsets.only(top: 4, right: 4),
child: Container(
decoration: decorateIcon(),
width: 20,
height: 20,
child: Center(
child: Icon(
getIsSelectableIconImage(),
color: Colors.white,
size: 12,
),
),
),
);
}
}