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 {
  Log.debug('updateUserBio($bio)', '$runtimeType');
  await _myUserRepository.updateUserBio(bio);
}