static List<String>? splitID(String id) { var parts = split(id, ':', 2); return parts.length == 2 ? parts : null; }