Future<bool> removeOrganizationById(String id) async { var status = await dio.delete( "/crm/organizations/$id", ); return status.data['success']; }