Hello, because of the migration i have to replace
fun <T> T.toInput() with Optional.presentIfNotNull(this)
and fun <T : Any> T.toInput() with Optional.Present(this)
replace toInput extensions will be really hard when you using it in like 100 of files
you cant replace it with find and replace because you cant distict nullable and nonNull values so is there any other way other than manually replace it?