< Flutter UIKit />
UTD Live Room Kit
होस्ट कैमरा, गेस्ट टाइल और स्टेज मैनेजमेंट के साथ वीडियो लाइव रूम।
import 'package:utd_live_room_kit/utd_live_room_kit.dart';
UTDLiveRoom(
appId: '<utd-app-id>',
appKey: '<utd-app-key>', // publishable; no backend needed
userId: 'user123',
userName: 'Jane',
roomId: 'room456',
roomOwnerId: 'owner789',
adminIds: const {'mod1', 'mod2'},
config: const UTDLiveRoomConfig(maxGuestTiles: 3),
);3
गेस्ट टाइल
4
भूमिकाएँ
Drop-in
पूरा UI
PiP
+ minimize
< utd_live_room_kit />
मुख्य विशेषताएँ
LiveKit और UTD Stream Engine से संचालित, इंटरैक्टिव वीडियो लाइव-रूम के लिए एक प्रोडक्शन-रेडी Flutter पैकेज। फ़ुल-ब्लीड होस्ट कैमरा के साथ तीन तक फ़्लोटिंग गेस्ट टाइल, सर्वर-अधिकृत भूमिकाएँ (होस्ट, गेस्ट, एडमिन, ऑडियंस), को-पब्लिशर को इनवाइट करने के लिए डायनामिक स्टेज ऑपरेशन, रियल-टाइम चैट, ऑडियो रूटिंग के साथ मीडिया कंट्रोल और minimize/PiP।
होस्ट + गेस्ट टाइल के साथ ड्रॉप-इन लाइव-रूम UI
असीमित लाइव-स्ट्रीम स्टेज (कोई सीट ग्रिड नहीं)
स्टेज फ़्लो: बोलने की रिक्वेस्ट, होस्ट इनविटेशन, हटाना
सर्वर-अधिकृत भूमिकाएँ: होस्ट, गेस्ट, एडमिन (मॉडरेटर), ऑडियंस
होस्ट मीडिया कंट्रोल: फ़ोर्स-mute/unmute, कैमरा बंद करना, स्टेज से हटाना
डीडुप के साथ रियल-टाइम डेटा-चैनल चैट
स्तरबद्ध रीकनेक्शन (लाइट <15s, फ़ुल <60s, एग्ज़िट >60s)
वैकल्पिक Android OS PiP के साथ फ़्लोटिंग ओवरले में minimize
TrackProcessor के ज़रिए वीडियो इफ़ेक्ट्स (Video Effects Kit के साथ जुड़ता है)
नो-बैकएंड क्रेडेंशियल: per-user bearer auth के साथ appKey टोकन मिंटिंग
< utd_live_room_kit />
शुरू करें
इंस्टॉल करें
flutter pub add utd_live_room_kit< utd_live_room_kit />
API संदर्भ
Main widget
The drop-in LiveKit live-streaming room widget.
UTDLiveRoomwidgetconst UTDLiveRoom({required String appId, required String appKey, required String userId, required String userName, required String roomId, required String roomOwnerId, Set<String> adminIds, ..., UTDLiveRoomConfig config, void Function(UTDRoomController)? onControllerReady, ...})A LiveKit-based video live room. The host's camera fills the screen as the background; up to maxGuestTiles invited guests appear as floating video tiles. Audience watch + chat and may request to go live.
पैरामीटर
appIdStringआवश्यकApp ID for the UTD Stream Engine (X-App-Id).
appKeyStringआवश्यकPublishable app key (no backend). The kit mints tokens directly with X-App-Key; the server secret never ships.
userIdStringआवश्यकLocal user's identity.
userNameStringआवश्यकLocal user's display name.
roomIdStringआवश्यकRoom / LiveKit room name to join.
roomOwnerIdStringआवश्यकIdentity of the room owner (becomes host); everyone else joins as audience.
adminIdsSet<String>डिफ़ॉल्ट = const {}Identities the owner will promote to admin (moderators) once present in the room.
adminIdsResolverFuture<Set<String>> Function()?डिफ़ॉल्ट = nullAsync source for adminIds resolved after join; the owner self-promotes them via the role endpoint.
adminIdsNowSet<String> Function()?डिफ़ॉल्ट = nullOptional sync probe for the admin list at token time (no waiting).
configUTDLiveRoomConfigडिफ़ॉल्ट = const UTDLiveRoomConfig()Behaviour, theming, and section/tile override configuration.
onControllerReadyvoid Function(UTDRoomController)?डिफ़ॉल्ट = nullCalled once the room controller is created (use it to drive the room imperatively).
onConnectionChangedvoid Function(bool)?डिफ़ॉल्ट = nullCalled when the connection succeeds (true) or fails (false).
onConnectErrorvoid Function(Object, StackTrace)?डिफ़ॉल्ट = nullCalled on connect failure; if null the kit shows its built-in connect-error view.
controllerUTDRoomController?डिफ़ॉल्ट = nullReuse an existing already-connected controller, e.g. restoring from a minimized overlay.
Room controller
Imperative facade over the room: connection lifecycle, participants, roles, stage, moderation, and sub-controllers.
UTDRoomControllerconstructorUTDRoomController()Creates a room controller that wires up the seat/stage, media, chat, minimize, and PiP sub-controllers.
initApimethodvoid initApi({String baseUrl, String engineBaseUrl, String? appId, String? appKey})Initializes the engine REST clients (token host + in-room ops host). Must be called before connect to use the backend APIs.
पैरामीटर
baseUrlStringडिफ़ॉल्ट = UTDApiClient.defaultBaseUrlToken/auth host (POST /api/v1/token).
engineBaseUrlStringडिफ़ॉल्ट = UTDApiClient.defaultEngineBaseUrlIn-room ops host (stage, roles, bans, participants).
appIdString?डिफ़ॉल्ट = nullApp ID sent as the X-App-Id header.
appKeyString?डिफ़ॉल्ट = nullPublishable app key (no-backend mint credential, sent as X-App-Key).
connectmethodasyncFuture<void> connect({required String url, required String token, int seatCount = 9, bool enableMicOnJoin = false, bool useSpeaker = true, Map<String, String> userAttributes = const {}, String? roomName, String? hostIdentity})Connects to the LiveKit room, initializes seats/stage, starts chat + media listeners, and begins participant/speaking tracking.
पैरामीटर
urlStringआवश्यकLiveKit server URL from the token response.
tokenStringआवश्यकLiveKit access token from generateToken.
seatCountintडिफ़ॉल्ट = 9Tile-layout capacity (host slot + guest tiles); the engine stage is uncapped.
enableMicOnJoinboolडिफ़ॉल्ट = falseEnable the local mic immediately after connecting.
useSpeakerboolडिफ़ॉल्ट = trueRoute audio to the speaker (preferring Bluetooth) on join.
userAttributesMap<String, String>डिफ़ॉल्ट = const {}Participant attributes (avatar, name, VIP frame, etc.) published after connect.
roomNameString?डिफ़ॉल्ट = nullRoom name used for in-room REST calls; falls back to the LiveKit room name.
hostIdentityString?डिफ़ॉल्ट = nullOwner identity, used to detect when the host leaves and end the live for others.
generateTokenmethodasyncFuture<UTDTokenResponse> generateToken({required String identity, required String roomName, required String roomOwnerId, String type = 'live_stream', String? name, String role = 'audience', ..., Map<String, dynamic>? metadata})Mints a LiveKit token via the engine and, in app-key mode, applies the returned per-user bearer to the in-room clients. Throws UTDBannedException on a 403 ban.
पैरामीटर
identityStringआवश्यकUser identity to mint the token for.
roomNameStringआवश्यकTarget room name.
roomOwnerIdStringआवश्यकIdentity of the room owner.
typeStringडिफ़ॉल्ट = 'live_stream'Engine product type; live_stream is the unbounded seatless stage.
nameString?डिफ़ॉल्ट = nullDisplay name.
roleStringडिफ़ॉल्ट = 'audience'Requested role; the engine clamps non-owners to audience.
deviceIdString?डिफ़ॉल्ट = nullStable per-install id for single-active-session enforcement; auto-resolved when omitted.
metadataMap<String, dynamic>?डिफ़ॉल्ट = nullExtra metadata to embed in the token.
leavemethodasyncFuture<void> leave()Leaves the room: a host broadcasts _live_ended first, then all listeners/timers are cancelled and LiveKit is disconnected.
disposemethodvoid dispose()Releases all controller resources (timers, subscriptions, notifiers, sub-controllers, and REST clients). Idempotent.
requestToSpeakmethodasyncFuture<Map<String, dynamic>?> requestToSpeak()Local audience member asks to go on stage (transient host-side signal). Returns a result map on success, null on failure.
inviteToSpeakmethodasyncFuture<Map<String, dynamic>?> inviteToSpeak(String targetIdentity)Host/admin invites a user onto the stage (grants publish immediately, no accept/decline). Returns null when guest tiles are full.
पैरामीटर
targetIdentityStringआवश्यकIdentity of the user to invite on stage.
approveSpeakerRequestmethodasyncFuture<Map<String, dynamic>?> approveSpeakerRequest(String identity)Host/admin approves a pending stage request by adding the user to the stage. Returns null when guest tiles are full.
पैरामीटर
identityStringआवश्यकIdentity of the requester to approve.
changeRolemethodasyncFuture<UTDRoleChangeResult> changeRole({required String targetIdentity, required String role})Owner-only: changes a participant's role via the engine. Throws on REST error (403/404/409/422) so callers can surface a message.
पैरामीटर
targetIdentityStringआवश्यकIdentity of the participant whose role changes.
roleStringआवश्यकNew role (e.g. 'admin', 'audience').
banUsermethodasyncFuture<bool> banUser(String identity, {String? reason, int? durationSeconds, bool global = false})Bans a user. Room-scoped by default; pass global true for a project-wide ban. Returns true on success.
पैरामीटर
identityStringआवश्यकIdentity to ban.
reasonString?डिफ़ॉल्ट = nullOptional ban reason.
durationSecondsint?डिफ़ॉल्ट = nullBan duration; null = permanent.
globalboolडिफ़ॉल्ट = falseWhen true, bans across the whole project rather than this room.
kickParticipantmethodasyncFuture<bool> kickParticipant(String targetIdentity)Host/admin: removes a user from the broadcast entirely (engine-side disconnect). Returns true on success.
पैरामीटर
targetIdentityStringआवश्यकIdentity to remove from the room.
setRemoteMicEnabledmethodasyncFuture<bool> setRemoteMicEnabled(String targetIdentity, bool enabled)Host/admin: server-side force-mute or unmute another participant's microphone. Returns true on success.
पैरामीटर
targetIdentityStringआवश्यकIdentity whose mic is controlled.
enabledboolआवश्यकTrue to enable, false to mute.
sendChatMessagemethodasyncFuture<void> sendChatMessage(String text)Sends a chat message to the room (delegates to the chat controller).
पैरामीटर
textStringआवश्यकMessage body to send.
participantsStreamgetterasyncStream<List<UTDParticipant>> get participantsStreamStream of all room participants; emits on join/leave/attribute/metadata changes.
रिटर्न मान: Stream<List<UTDParticipant>> — Live participant list.
roleChangeStreamgetterasyncStream<UTDRoleChangeEvent> get roleChangeStreamStream of role changes (_role_change) for all participants — owner promotions/demotions and engine auto-corrections.
रिटर्न मान: Stream<UTDRoleChangeEvent> — Role-change events.
isConnectedgetterbool get isConnectedWhether the room is currently in the connected state.
रिटर्न मान: bool — True when connected.
isLocalHostgetterbool get isLocalHostWhether this device is the room owner (host).
रिटर्न मान: bool — True if the local user is the host.
activeSpeakerspropertyfinal ValueNotifier<Set<String>> activeSpeakersSet of user IDs currently speaking, driven by LiveKit active-speaker events plus a 300ms backstop poll.
रिटर्न मान: ValueNotifier<Set<String>> — Speaking identities.
onBannedcallbackvoid Function(UTDBanNotice notice)? onBannedFired once when the local user is banned (data message, removal, or token 403). The widget wires this to show the banned dialog and leave.
रिटर्न मान: void Function(UTDBanNotice)? — Ban callback.
Media controller
Mic, camera, speaker, and host preview/Go-Live control (UTDRoomController.mediaController).
startPreviewmethodasyncFuture<LocalVideoTrack?> startPreview({CameraPosition position = CameraPosition.front})Creates a local, unpublished camera preview for the host 'Go Live' screen (no remote sees it). Idempotent.
पैरामीटर
positionCameraPositionडिफ़ॉल्ट = CameraPosition.frontFront/back camera to open the preview with.
goLivemethodasyncFuture<void> goLive({bool withMic = true})Host 'Go Live': publishes the camera (reusing the preview track for no flicker) and, by default, enables the mic.
पैरामीटर
withMicboolडिफ़ॉल्ट = trueAlso enable the microphone when going live.
setMicrophoneEnabledmethodasyncFuture<void> setMicrophoneEnabled(bool enabled)Sets the local microphone to a specific enabled state and updates isMicEnabled.
पैरामीटर
enabledboolआवश्यकTrue to enable, false to mute.
setCameraEnabledmethodasyncFuture<void> setCameraEnabled(bool enabled)Sets the local camera to a specific state (requests camera permission first) and updates isCameraEnabled.
पैरामीटर
enabledboolआवश्यकTrue to enable, false to disable.
switchCameramethodasyncFuture<void> switchCamera()Flips between front and back camera for the active (published or preview) camera track, re-attaching any video-effects processor.
setSpeakerOnmethodasyncFuture<void> setSpeakerOn(bool on)Turns the speaker on/off. Off truly silences the room (disables remote audio tracks), not just reroutes to the earpiece.
पैरामीटर
onboolआवश्यकTrue for loudspeaker, false to silence the room.
setVideoProcessormethodasyncFuture<void> setVideoProcessor(TrackProcessor<VideoProcessorOptions>? processor)Attaches (or detaches with null) a beauty/filter processor to the active local camera track at runtime, without re-capturing.
पैरामीटर
processorTrackProcessor<VideoProcessorOptions>?आवश्यकEffects processor to attach; null detaches.
isMicEnabledpropertyfinal ValueNotifier<bool> isMicEnabledReactive local microphone enabled state, kept in sync with server/host-initiated mutes.
रिटर्न मान: ValueNotifier<bool> — Mic state.
canPublishpropertyfinal ValueNotifier<bool> canPublishWhether the local participant may publish mic/camera; driven by LiveKit permission events. Gate publish UI on this.
रिटर्न मान: ValueNotifier<bool> — Publish permission.
isPreviewingpropertyfinal ValueNotifier<bool> isPreviewingWhether a local, unpublished camera preview (host 'Go Live' screen) is active.
रिटर्न मान: ValueNotifier<bool> — Preview-active state.
Stage REST API
Direct REST client for the live_stream stage endpoints (UTDStageApi). The stage is the unbounded publisher set: host plus host-invited co-publishers.
getStagemethodasyncFuture<Map<String, dynamic>> getStage({required String roomName})Returns the current stage publishers as { members: [{ identity, name, role }] }. GET /api/v1/rooms/:name/stage.
पैरामीटर
roomNameStringआवश्यकRoom name.
addToStagemethodasyncFuture<Map<String, dynamic>> addToStage({required String roomName, required String targetIdentity, required String actorIdentity})Host/admin invites a user onto the stage (grants A/V publish). POST /api/v1/rooms/:name/stage/add.
पैरामीटर
roomNameStringआवश्यकRoom name.
targetIdentityStringआवश्यकUser being added to the stage.
actorIdentityStringआवश्यकHost/admin performing the action (dual-mode fallback).
removeFromStagemethodasyncFuture<Map<String, dynamic>> removeFromStage({required String roomName, required String targetIdentity, required String actorIdentity})Host/admin removes a user from the stage (revokes publish). POST /api/v1/rooms/:name/stage/remove.
पैरामीटर
roomNameStringआवश्यकRoom name.
targetIdentityStringआवश्यकUser being removed from the stage.
actorIdentityStringआवश्यकHost/admin performing the action.
leaveStagemethodasyncFuture<Map<String, dynamic>> leaveStage({required String roomName, required String identity})A co-publisher steps down from the stage on their own. POST /api/v1/rooms/:name/stage/leave.
पैरामीटर
roomNameStringआवश्यकRoom name.
identityStringआवश्यकThe co-publisher leaving the stage.
requestStagemethodasyncFuture<Map<String, dynamic>> requestStage({required String roomName, required String identity})A viewer asks to go on stage; the engine notifies host/admins via a _stage_request message (no persisted queue). POST /api/v1/rooms/:name/stage/request.
पैरामीटर
roomNameStringआवश्यकRoom name.
identityStringआवश्यकThe requesting viewer's identity.
Chat controller
Room chat: send, receive, and retain messages (UTDRoomController.chatController).
sendMessagemethodasyncFuture<void> sendMessage(String text, {Map<String, dynamic>? userData})Sends a chat message (trims and skips empty text), appends it locally, and broadcasts it over the data channel.
पैरामीटर
textStringआवश्यकMessage body.
userDataMap<String, dynamic>?डिफ़ॉल्ट = nullOptional sender metadata (e.g. avatar, VIP frame) attached to the message.
addDisplayMessagemethodvoid addDisplayMessage(UTDChatMessage message)Appends a message to the list for display only (e.g. local system notices), without sending it.
पैरामीटर
messageUTDChatMessageआवश्यकMessage to append locally.
clearMessagesmethodvoid clearMessages()Clears the retained chat message list.
messagespropertyfinal ValueNotifier<List<UTDChatMessage>> messagesReactive list of retained chat messages (capped at the most recent 300).
रिटर्न मान: ValueNotifier<List<UTDChatMessage>> — Chat history.
Configuration & theming
Room behaviour, layout overrides, video effects, and color tokens.
UTDLiveRoomConfigconstructorconst UTDLiveRoomConfig({bool showControlsBar = true, bool enableMinimize = true, bool autoHostCamera = false, bool frontCameraOnJoin = true, bool mirrorLocalVideo = true, int maxGuestTiles = 3, ..., UTDRoomTheme theme = const UTDRoomTheme(), UTDRoomStrings? strings, ...})Configuration for UTDLiveRoom: shared room behaviour, live video behaviour, theming, section/tile builder overrides, video effects, and user attributes.
पैरामीटर
showControlsBarboolडिफ़ॉल्ट = trueRender the built-in controls bar.
enableMinimizeboolडिफ़ॉल्ट = trueAllow minimizing the room to an overlay.
useSpeakerWhenJoiningboolडिफ़ॉल्ट = trueRoute audio to the speaker on join.
showGoLiveButtonboolडिफ़ॉल्ट = trueShow the built-in centered Go Live button during host preview.
autoHostCameraboolडिफ़ॉल्ट = falseHost publishes the camera immediately on connect, skipping self-preview.
frontCameraOnJoinboolडिफ़ॉल्ट = trueStart on the front camera.
mirrorLocalVideoboolडिफ़ॉल्ट = trueMirror the local camera tile (selfie view).
maxGuestTilesintडिफ़ॉल्ट = 3Max simultaneous guest tiles (host excluded); enforced server-side too.
hostFitVideoViewFitडिफ़ॉल्ट = VideoViewFit.coverHow the host's full-bleed video is fitted.
guestFitVideoViewFitडिफ़ॉल्ट = VideoViewFit.coverHow each floating guest tile's video is fitted.
themeUTDRoomThemeडिफ़ॉल्ट = const UTDRoomTheme()Color tokens for the built-in UI.
stringsUTDRoomStrings?डिफ़ॉल्ट = nullLocalized strings; null = English defaults.
headerWidgetWidget?डिफ़ॉल्ट = nullOverride for the room header section.
messagesWidgetWidget?डिफ़ॉल्ट = nullOverride for the chat/messages area.
controlsBarWidgetWidget?डिफ़ॉल्ट = nullOverride for the controls bar.
guestTileFooterBuilderWidget Function(BuildContext, String)?डिफ़ॉल्ट = nullOverlay at the bottom of each guest tile, receives the guest identity.
onStageTapvoid Function()?डिफ़ॉल्ट = nullCalled when the empty host-video stage area is tapped (e.g. tap-hearts).
userInRoomAttributesMap<String, String>डिफ़ॉल्ट = const {}Attributes shared with other participants.
buildVideoProcessorTrackProcessor<VideoProcessorOptions> Function()?डिफ़ॉल्ट = nullFactory building a fresh video-effects (beauty/filter) processor per camera capture.
UTDRoomThemeconstructorconst UTDRoomTheme({Color background, Color surface, Color onSurface, Color primary, Color danger, Color seatRingSpeaking, Color badgeHost, Color badgeAdmin, ...})Color tokens for the package's built-in default UI. Every field has a dark-room default, so const UTDRoomTheme() is a complete, usable theme.
पैरामीटर
backgroundColorडिफ़ॉल्ट = Color(0xFF14121C)Full-screen room background.
surfaceColorडिफ़ॉल्ट = Color(0xFF1C1C28)Surface behind grouped content.
onSurfaceColorडिफ़ॉल्ट = Colors.whitePrimary foreground color for text/icons.
primaryColorडिफ़ॉल्ट = Color(0xFF6C5CE7)Accent / call-to-action color.
dangerColorडिफ़ॉल्ट = Color(0xFFE74C3C)Destructive color (leave, kick, ban, mute).
seatRingSpeakingColorडिफ़ॉल्ट = Color(0xFF2ECC71)Ring around a tile whose occupant is speaking.
badgeHostColorडिफ़ॉल्ट = Color(0xFFFFA726)Badge color for the host role.
badgeAdminColorडिफ़ॉल्ट = Color(0xFF448AFF)Badge color for the admin role.
copyWithmethodUTDRoomTheme copyWith({Color? background, Color? surface, Color? primary, Color? danger, ...})Returns a copy of the theme with the given tokens overridden — rebrand without replacing whole widgets.
Models & enums
Data types for participants, seats, roles, bans, chat, and exceptions.
UTDParticipantclassconst UTDParticipant({required String id, required String name, bool isMicEnabled = false, bool isSpeaking = false, Map<String, String> attributes = const {}})A room participant: id, display name, mic/speaking state, and custom attributes (e.g. 'fr' frame, 'frt' frame type, 'cn' color name).
पैरामीटर
idStringआवश्यकUnique user ID.
nameStringआवश्यकDisplay name.
isMicEnabledboolडिफ़ॉल्ट = falseWhether the participant's mic is on.
isSpeakingboolडिफ़ॉल्ट = falseWhether the participant is currently speaking.
attributesMap<String, String>डिफ़ॉल्ट = const {}Custom participant attributes.
UTDRoleenumenum UTDRole { visitor, audience, guest, admin, host }The known engine roles, lowest to highest privilege. The room owner is identified separately (owner_identity), not by these roles.
SeatStateclassconst SeatState({required int index, String? occupantUserId, Map<String, String> attributes = const {}})One tile in the live room: index 0 = host, 1..N = guest tiles. On the wire this is a backend seat.
पैरामीटर
indexintआवश्यकTile/seat index (0 = host).
occupantUserIdString?डिफ़ॉल्ट = nullUser occupying the tile; null = empty.
attributesMap<String, String>डिफ़ॉल्ट = const {}Occupant attributes (name, avatar, fr, frt).
UTDRoleChangeEventclassconst UTDRoleChangeEvent({required String identity, required String role, String? previousRole})Realtime _role_change event broadcast to all participants. Server-sent, so identify the affected user from identity (the LiveKit sender is null).
पैरामीटर
identityStringआवश्यकAffected user's identity.
roleStringआवश्यकNew role.
previousRoleString?डिफ़ॉल्ट = nullRole before the change.
UTDChatMessageclassUTDChatMessage({required String senderUserId, required String senderName, required String text, required DateTime timestamp, Map<String, dynamic> userData = const {}, String? messageID})A chat message. The text field is untrusted, peer-supplied input relayed verbatim — render as plain text only.
पैरामीटर
senderUserIdStringआवश्यकSender's identity.
senderNameStringआवश्यकSender's display name.
textStringआवश्यकMessage body (untrusted plain text).
timestampDateTimeआवश्यकWhen the message was created.
userDataMap<String, dynamic>डिफ़ॉल्ट = const {}Optional sender metadata.
messageIDString?डिफ़ॉल्ट = autoMessage id; defaults to a millisecond timestamp string.
UTDBanNoticeclassconst UTDBanNotice({String? roomName, String? reason, DateTime? expiresAt, UTDBanSource source = UTDBanSource.dataMessage})A ban (or forced-exit) notice delivered to the local user, with named constructors for data-message, disconnect, token-403, and signed-in-elsewhere sources.
पैरामीटर
roomNameString?डिफ़ॉल्ट = nullRoom the ban applies to; null = global.
reasonString?डिफ़ॉल्ट = nullBan reason when known.
expiresAtDateTime?डिफ़ॉल्ट = nullExpiry; null = permanent.
sourceUTDBanSourceडिफ़ॉल्ट = UTDBanSource.dataMessageWhere the notice originated.
UTDBannedExceptionclassconst UTDBannedException([String message = 'User is banned', int statusCode = 403])Thrown by token generation when the server returns 403 User is banned.
पैरामीटर
messageStringडिफ़ॉल्ट = 'User is banned'Error message.
statusCodeintडिफ़ॉल्ट = 403HTTP status code.
UTD के साथ बनाने के लिए तैयार हैं?
अपना अकाउंट बनाएँ, अपने मास्टर वॉलेट को फंड करें, और अपनी ज़रूरत की सेवाएँ चालू करें।