addItem static method
오버레이 항목 추가
Implementation
static void addItem(Widget title) {
int i = _overlayList.isNotEmpty ? _overlayList.length : 0;
_overlayList.insert(i, title);
/// animatedKey 할당한 AnimatedList 에서 i번째에 해당하는 순서에 아이템을 추가 한다.
_animatedKey.currentState!.insertItem(i);
}