deleteOrganization method
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});