removeParticipantByIdentity method
Implementation
Future<bool?> removeParticipantByIdentity(String identity) async {
try {
final result = await TwilioConversations()
.conversationApi
.removeParticipantByIdentity(sid, identity);
return result;
} on PlatformException catch (err) {
throw TwilioConversations.convertException(err);
}
}