initIsolateNewClient method
add this for multithread new client on flutter apps
Implementation
Future<void> initIsolateNewClient({
required int clientId,
required Map clientOption,
int clientUserId = 0,
}) async {
await initIsolate(
clientId: clientId,
clientOption: {...client_option, ...clientOption},
clientUserId: clientUserId,
);
}