Helllo
@agrosner I'm having the following error in my project: Error: error: * ========== * class com.raizlabs.android.dbflow.processor.TableValidator: Table Value must provide a visible, default constructor. * ========== *
However, I checked the link
https://github.com/Raizlabs/DBFlow/issues/1463 that for item 3, you suggest that 'Make sure you provide default values for all fields.' However, all fields in the data class begin with the value null. What would be the solution to this case? Would you help me? Os campos do data class sao : @Column
@PrimaryKey(autoincrement = true)
var id: Long? = null,
@Column
var example_value: String? = null,
@Column
var example_value: String? = null,
@Column
var example_value: String? = null,
@Column
var example_value: Int? = null,
@Column
var example_value: String? = null,
@Column
var example_values: String? = null,
@Column
@SerializedName("active")
var isActive: Boolean? = null,
@Column
@Transient
var example_value: Int? = null,
@Expose
var example_value: List<example_value>? = null)