VoidCallback typedef
        VoidCallback =
     void Function()
    
    
Signature of callbacks that have no arguments and return no data.
Implementation
typedef VoidCallback = void Function();Signature of callbacks that have no arguments and return no data.
typedef VoidCallback = void Function();