@override Subfield? getSubfieldByName(String subfieldName) { for (var sub in subfields) { if (sub.name == subfieldName) return sub; } return null; }