getSeatApplicationList method
Implementation
Future<void> getSeatApplicationList() async {
final result = await liveService.getSeatApplicationList();
if (result.code == TUIError.success) {
var list = result.data as List<TUIRequest>;
seatState.initSeatApplicationList(list);
} else {
ErrorHandler.onError(result.code);
}
}