reset method

Future<void> reset()

Reset the conversation history

Implementation

Future<void> reset() async {
  try {
    await _channel.invokeMethod('reset', {'wrapperId': _wrapperId});
  } on PlatformException catch (e) {
    throw Exception('Failed to reset: ${e.message}');
  }
}