Disposer typedef
        Disposer =
     Future? Function()
    
    
A function that, when called, disposes of one or more objects.
Implementation
typedef Disposer = Future<dynamic>? Function();A function that, when called, disposes of one or more objects.
typedef Disposer = Future<dynamic>? Function();