int? toInt([int? defaultValue]) { try { return int.parse(this); } catch (e) { return defaultValue; } }