getInkWell method

dynamic getInkWell(
  1. int index
)

Implementation

getInkWell(int index) {
  return InkWell(
      child: Text('[$index]', style: widget.theme.keyTextStyle),
      onTap: () {
        setState(() {
          openFlag[index] = !(openFlag[index]);
        });
      });
}