delete method
Frees memory that was allocated for Cheetah
Implementation
Future<void> delete() async {
if (_handle != null) {
await _channel
.invokeMethod(_NativeFunctions.DELETE.name, {'handle': _handle});
_handle = null;
}
}
Frees memory that was allocated for Cheetah
Future<void> delete() async {
if (_handle != null) {
await _channel
.invokeMethod(_NativeFunctions.DELETE.name, {'handle': _handle});
_handle = null;
}
}