updateInfo method
Implementation
Future updateInfo(
{String? userId,
String? phone,
String? username,
String? nickname}) async {
this.userId = userId;
this.name = username;
this.phone = phone;
this._nickname = nickname;
this.save();
return true;
}