Are using multiple annotations in a single line for `constructor(..)` is correct from code style per...
t
Are using multiple annotations in a single line for
constructor(..)
is correct from code style perspective or they should be one per line?
Copy code
class Foo @JvmOverloads @SuppressLint("CheckResult") constructor(...)
or
Copy code
class Foo
@JvmOverloads
@SuppressLint("CheckResult")
constructor(...)