findFragmentById
findFragmentById is a method commonly found in Android development frameworks, specifically within the FragmentManager class. Its primary purpose is to locate and retrieve a Fragment instance that has been previously added to the activity or another fragment, identified by a unique integer ID.
When you add a Fragment to your activity's layout, either statically in XML or dynamically through code,
If a Fragment with the specified ID is found, the method returns a reference to that Fragment