onChang method

void onChang(
  1. int index
)

Implementation

void onChang(int index) {
  if (widget.onChang is Function) {
    widget.onChang!(index);
  }

  setState(() {
    _index = index;
  });
}