Not-Null Assertion (!!) (Kotlin)
The !! operator forcibly converts a nullable value to its non-null type, throwing a NullPointerException at runtime if the value actually is null. Use it…
The !! operator forcibly converts a nullable value to its non-null type, throwing a NullPointerException at runtime if the value actually is null. Use it…