deleteOrganization method

  1. @override
Future<void> deleteOrganization(
  1. String id, {
  2. bool force = false,
})
override

Deletes the organization with id and everything under it.

force must be true to delete one that still has projects; without it a populated organization raises ConflictException rather than silently destroying every release it owns.

Implementation

@override
Future<void> deleteOrganization(String id, {bool force = false}) =>
    _call(StoreProtocol.organizationDelete, {'id': id, 'force': force});