Added default to flash configuration

This commit is contained in:
Viktor De Pasquale 2019-07-10 18:47:18 +02:00 committed by John Wu
parent 1d16d980b3
commit f822c1c2e4

View File

@ -14,6 +14,10 @@ sealed class Configuration : Parcelable {
@Parcelize
object Secondary : Flash()
companion object {
operator fun invoke(): Flash = Primary
}
}
@Parcelize