Fetching values from a specific schema to a custom schema in flutter

Can everyone know give an example for how way to fetching values from a specific schema to a custom schema in flutter? for example I need to fetch value on field session_id and previous_session_id to field on my own custom schema

Hi @Ainul_Mutaqin,

The Flutter tracker does not provide a general way to do this for any data (unlike our iOS/Android/JavaScript trackers, where you can achieve this with plugins).

However, if you are interested in the session ID, you can get that from the tracker using the tracker.sessionId property (see here). The previous session ID is not available in this way.

Another approach would be to use a custom JavaScript enrichment to read the values from the client_session entity and populate your custom entities.