updateUserBio method
- UserBio? bio
Updates or resets the MyUser.bio field of the authenticated MyUser.
Implementation
Future<void> updateUserBio(UserBio? bio) async {
await _myUserService.updateUserBio(bio);
}
Updates or resets the MyUser.bio field of the authenticated MyUser.
Future<void> updateUserBio(UserBio? bio) async {
await _myUserService.updateUserBio(bio);
}