Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3970,7 +3970,8 @@
"pages": [
"sdk/flutter/advanced-overview",
"sdk/flutter/connection-status",
"sdk/flutter/connection-behaviour"
"sdk/flutter/connection-behaviour",
"sdk/flutter/secure-media-access"
]
},
"sdk/flutter/extensions-overview",
Expand Down
3 changes: 2 additions & 1 deletion sdk/flutter/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Minimum Requirements
<Tabs>
<Tab title="Dart">
```dart
cometchat_sdk: ^4.0.33
cometchat_sdk: ^4.1.1
```

</Tab>
Expand Down Expand Up @@ -108,6 +108,7 @@ The `AppSettings` class allows you to configure three settings:
* **autoEstablishSocketConnection(boolean value)**: This property takes a boolean value which when set to true informs the SDK to manage the web-socket connection internally. If set to false, it informs the SDK that the web-socket connection will be managed manually. The default value for this parameter is true. For more information on this, please check the [Connection Behaviour](/sdk/flutter/connection-behaviour) section. The default value for this property is **true.**
* **adminHost(adminHost: string)**: This method takes the admin URL as input and uses this admin URL instead of the default admin URL. This can be used in case of dedicated deployment of CometChat.
* **clientHost(clientHost: string)**: This method takes the client URL as input and uses this client URL instead of the default client URL. This can be used in case of dedicated deployment of CometChat.
* **secureMediaMode(SecureMediaMode mode)**: This method sets the secure media access mode for handling media file URLs. See the [Token Based File Access](/sdk/flutter/secure-media-access) guide for details on available modes and configuration.

<Tabs>
<Tab title="Dart">
Expand Down
Loading