Returns the slot with the given id.
id
Slot? getSlotById(int id) { if (!state.hasData) { return null; } return state.requireData.firstWhereOrNull((element) => element.id == id); }