createDate property
The creation date column.
The value is unix timestamp seconds in android.
The value is NSDate in iOS/macOS.
Please use ColumnUtils.convertDateTimeToSql to convert date value.
Simple use: DateColumnWhereCondition.
Exmaple:
final date = DateTime(2015, 6, 15);
final condition = DateColumnWhereCondition(
Implementation
@override
String get createDate => 'creationDate';