Hookable constructor

Hookable({
  1. Key? key,
})

The Hookable constructor that passes the Key value to the super class to manage the widget during runtime.

Implementation

Hookable({Key? key}) : super(key: key);