updateUserBio method

Future<void> updateUserBio(
  1. UserBio? bio
)

Updates or resets the MyUser.bio field of the authenticated MyUser.

Implementation

Future<void> updateUserBio(UserBio? bio) async {
  await _myUserService.updateUserBio(bio);
}