getSessionId method

Future<String?> getSessionId()

ZH

获取房间会话Id @return

EN

Get room session ID @return

Implementation

Future<String?> getSessionId() async {
  String? id = await _channel.invokeMethod('getSessionId');
  return id;
}