loadSession method
Implementation
@override
Future<Map<Object?, dynamic>?> loadSession(double contextId,
    {required String path}) async {
  return await methodChannel.invokeMethod<Map<Object?, dynamic>?>(
      "loadSession", {"contextId": contextId, "path": path});
}