Create a contact list. Returns the ID of the created list.
Future<String> createList(String name) async { final id = await _client.post<String>('/audience/lists', body: {'name': name}); return id; }