Null-safetyBy Honey / March 5, 2024 void main() { // null int? z; // nullable print(z); int b = 12; int result = (z ?? 0) + b; print(result); }