klaxon icon indicating copy to clipboard operation
klaxon copied to clipboard

Add list of convertors

Open ulx opened this issue 6 years ago • 1 comments

I can find a method to add a list of converters. Klaxon().converter(arrayListOf(con1, con2, con3)). Is the method exist?

ulx avatar Feb 20 '19 14:02 ulx

You can call converter more than once.

Klaxon() .converter(con1) .converter(con2) .converter(con3)

waynetanner avatar Mar 31 '19 22:03 waynetanner