``` fun newInstance(startPosition: Int) = ...
# android
j
Copy code
fun newInstance(startPosition: Int) = MediaPagerFragment().apply {
            arguments = Bundle().apply {
                putInt(ARG_START_POSITION, startPosition)
            }
        }
😀
👍 1