CheckKey constructor

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

Implementation

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