dispose method
Disposes the self created isolate for json encoding/decoding
Does nothing if you pass your own isolate
Implementation
Future<void> dispose() async {
_log.fine("Dispose FunctionsClient");
if (!_hasCustomIsolate) {
return _isolate.dispose();
}
}