dispose method

Future<Plug<Plug>> dispose()
inherited

Disposes of the plug.

This method should be overridden to perform any necessary cleanup when the plug is being removed. The default implementation returns the plug instance itself.

Implementation

Future<Plug> dispose() async => this;