updateMyUserInfo method Null safety

Future<NIMResult<void>> updateMyUserInfo(
  1. NIMUser user
)

Update the current user's profile. Update the profile to user's value.

Implementation

Future<NIMResult<void>> updateMyUserInfo(NIMUser user) async {
  return _platform.updateMyUserInfo(user);
}