ConsentChk method

void ConsentChk(
  1. bool? newVal
)

Implementation

void ConsentChk(bool? newVal) => setState(() {
  isCheck = newVal!;
  if (isCheck) {
  } else if (!isCheck) {}
});