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