class Ordinal { final String name; final String inscription; final String rank; // TODO: make a proper class instead of this placeholder Ordinal({ required this.name, required this.inscription, required this.rank, }); }