Difference in hours.
int diffInHours(DateTime? other, {bool abs = false}) { final d = abs ? differenceAbs(withThis: other) : difference(withThis: other); return d.inHours; }