widget property

Widget get widget

Implementation

Widget get widget {
  return InkWell(
    onTap: onTap,
    child: Padding(
      padding: const EdgeInsets.all(3),
      child: Icon(icon, color: nsgtheme.colorBase.c100, size: nsgtheme.sizeS),
    ),
  );
}