updateSelfUserProfile method

Future<NIMResult<void>> updateSelfUserProfile(
  1. NIMUserUpdateParam param
)

更新自己的用户资料 调用该Api后, SDK会抛出: onUserProfileChanged

Implementation

Future<NIMResult<void>> updateSelfUserProfile(
    NIMUserUpdateParam param) async {
  return _platform.updateSelfUserProfile(param);
}