getBottomView method

Widget getBottomView(
  1. dynamic onTap(
    1. int type
    )
)

Implementation

Widget getBottomView(Function(int type) onTap) {
  return buttonOrLabel == 1 ? _getBtn(onTap) : _getLabel();
}