coalesce int?
static int replaceInt(int? value, {int defaultValue = 0}) { if (value == null) return defaultValue; return value; }