setCustomSessionId method
Implementation
@override
Future<bool> setCustomSessionId(String sessionId) async {
bool isCustomSessionIdSet = await methodChannel
.invokeMethod("setCustomSessionId", {"sessionId": sessionId});
return isCustomSessionIdSet;
}