CheckKey constructor

const CheckKey({
  1. Key? key,
  2. required VoidCallback onCheck,
})

Implementation

const CheckKey({
  super.key,
  required this.onCheck,
});