saveSession method

  1. @override
Future<int?> saveSession(
  1. double contextId, {
  2. required String path,
  3. required double size,
})
override

Implementation

@override
Future<int?> saveSession(double contextId,
    {required String path, required double size}) async {
  return await methodChannel.invokeMethod<int>(
      "saveSession", {"contextId": contextId, "path": path, "size": size});
}