W1003 Warnings
unused-function
function declared but not called
When this occurs
Function defined but never invoked
Example error message
warning[W1003]:
function 'helper' is declared but never called
How to fix
Call the function, remove it, or suppress with `@Suppress(W1003)`.