mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-06-29 02:03:10 -04:00
* refactor: database filter bloc * refactor: filter choice chips * fix: update field info in filters * refactor: simplify select option filter panel * test: fix tests * refactor: filter choice chips * test: add bloc tests * refactor: date time filter bloc and choice chip
5 lines
156 B
Dart
5 lines
156 B
Dart
import 'package:fixnum/fixnum.dart';
|
|
|
|
extension DateConversion on Int64 {
|
|
DateTime toDateTime() => DateTime.fromMillisecondsSinceEpoch(toInt() * 1000);
|
|
}
|