getSessionId method

  1. @override
Future<String?> getSessionId()

Implementation

@override
Future<String?> getSessionId() async {
  final result = await handleWebMethodCall(const MethodCall('getSessionId'));
  return result as String?;
}