fun Context.showDebugToast(message: String, settingsInteractor: SettingsInteractor) { | |
if (settingsInteractor.shouldShowDebugToasts()) { | |
Toast.makeText(context, message, Toast.LENGTH_LONG).show() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment