deleteIdZone method

Future<Success> deleteIdZone(
  1. String isolateId,
  2. String idZoneId
)

The deleteIdZone RPC frees the buffer that backs the specified ID zone, and makes that zone unusable for the remainder of the program's execution. For performance reasons, clients should aim to call invalidateIdZone and reuse existing zones as much as possible instead of deleting zones and then creating new ones.

Implementation

Future<Success> deleteIdZone(String isolateId, String idZoneId) =>
    _call('deleteIdZone', {'isolateId': isolateId, 'idZoneId': idZoneId});