The document only describes the equivalent changes to the API. If you want to see the new feature support, please refer to readme and change log.
This version is a null-safety version.
Please read document for null-safety information in dart or flutter.
0.5.x:
final dtCond = DateTimeCond(
min: startDt,
max: endDt,
asc: asc,
);
FilterOptionGroup().dateTimeCond = dtCond;
0.6.x
final dtCond = DateTimeCond(
min: startDt,
max: endDt,
);
final orderOption = OrderOption(
type: OrderOptionType.createDate,
asc: asc,
);
final filterOptionGroup = FilterOptionGroup()
..addOrderOption(orderOption);