Currently all we have is
fun consume(consume: Boolean) { builder = builder.consume(if (consume) Insetter.CONSUME_ALL else Insetter.CONSUME_NONE) }
And if I want to use Insetter.CONSUME_AUTO then I have to use builder.
Can we get this option via dsl pls?
Currently all we have is
fun consume(consume: Boolean) { builder = builder.consume(if (consume) Insetter.CONSUME_ALL else Insetter.CONSUME_NONE) }
And if I want to useInsetter.CONSUME_AUTO
then I have to use builder. Can we get this option via dsl pls?