setLiveInfo method
Implementation
Future<void> setLiveInfo(TUILiveInfo liveInfo, List<TUILiveModifyFlag> modifyFlags) async {
final result = await _setLiveInfoInternal(liveInfo, modifyFlags);
if (result.code == TUIError.success) {
return _updateLiveInfo(liveInfo, modifyFlags);
}
toastSubject?.add(ErrorHandler.convertToErrorMessage(
result.code.rawValue, result.message) ??
'');
}