getCurrentAccount method

Future<NIMResult<String?>> getCurrentAccount()

获取当前登录的帐号 如果未登录返回为空或者null

Implementation

Future<NIMResult<String?>> getCurrentAccount() async {
  return _platform.getCurrentAccount();
}