deleteUser method

Future<bool> deleteUser()

Deletes the user in Firebase Authentication. Returns true in case of success.

Implementation

Future<bool> deleteUser() async {
  return (await Get.find<AuthService>().deleteUser()) is UserSessionSuccess;
}