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