dispose abstract method

void dispose()

Call this once you're finished with this fetcher to release the native object and free all memory. Usually, this should be called in your State's dispose. Due to dart/flutter limitations, not calling this will leak memory.

Calling any method after calling dispose will result in an exception being thrown.

Implementation

void dispose();