<@U0F3291QE> I added 2 inline functions, which als...
# tornadofx
t
@edvin I added 2 inline functions, which also use varargs instead of map. with these usage, you can use
Copy code
add<SubFragment>(
         SubFragment::booleanParam to false,
         SubFragment::nullableBooleanParam to null
    ){
        subFragmentWithParam = this
    }
Instead of
Copy code
add(SubFragment::class, mapOf(
       SubFragment::booleanParam to false,
       SubFragment::nullableBooleanParam to null
   )){
        subFragmentWithParam = this
    }