static List<int>? tryToBytes(String? v) { if (v == null) return null; try { return toBytes(v); } catch (_) { return null; } }