You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this feature must be included in this package (Default value)
for example :
@entity
class User {
@primaryKey
final int id;
final String name;
@ColumnInfo(defaultValue: 'Guest')
final String role;
User({this.id, required this.name, this.role = 'Guest'});
}
The text was updated successfully, but these errors were encountered:
Hello ,
I think this feature must be included in this package (Default value)
for example :
The text was updated successfully, but these errors were encountered: