Firebase – How to Create a No-Argument Constructor for a Kotlin Data Class with Date and Time Fields
I have the following data class: data class TimesheetEntry( val id: Int = 0, val title: String = "", val category: String = "", var entryDate: LocalDate, var startTime: LocalTime, var endTime: LocalTime, val imageBitmap: Bitmap? = null ) I…