close method

Future<void> close({
  1. bool shouldCleanup = false,
})

关闭数字人对话

Implementation

Future<void> close({bool shouldCleanup = false}) async {
  await _state.close(shouldCleanup: shouldCleanup);
}