getIcon method
Implementation
Widget getIcon() {
return Padding(
padding: const EdgeInsets.only(
top: 16
),
child: Center(
child: UFUThumbIcon(
isSelect: isSelect,
iconType: iconType,
size: ThumbSize.large,
),
),
);
}