String? extractFormId(String id) { if (id.startsWith("new:")) { return null; } return id.split(":").first; }