destroy method

Future<void> destroy()

Implementation

Future<void> destroy() async {
  try {
    return TwilioConversations().conversationApi.destroy(sid);
  } on PlatformException catch (err) {
    throw TwilioConversations.convertException(err);
  }
}