setSelfInfo method
Implementation
Future<V2TimCallback> setSelfInfo(
{String? userID,
String? nickName,
String? faceUrl,
String? signature,
int? gender,
int? allowType,
int? role,
int? level,
int? birthday}) async {
V2TimUserFullInfo info = V2TimUserFullInfo(
userID: userID,
nickName: nickName,
faceUrl: faceUrl,
selfSignature: signature,
gender: gender,
allowType: allowType,
role: role,
level: level,
birthday: birthday);
V2TimCallback res = await _manager.setSelfInfo(userFullInfo: info);
return res;
}