int? stringToInt(String? value, [int? defaultValue]) { if (value == null) { return defaultValue; } return int.tryParse(value) ?? defaultValue; }