getLoginId static method

Future<String?> getLoginId()

获取当前用户的 loginId

Implementation

static Future<String?> getLoginId() async {
  return await _channel.invokeMethod("getLoginId");
}