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