initState 必須調用 super.initState(); 不然報錯

@override
  void initState() {
//    initState 必須調用 super.initState(); 不然報錯:info: This method overrides a method annotated as @mustCallSuper in 'State', but does not invoke the overridden method. (must_call_super at [qutoutiao_flutter] lib/routes/home/FeedList.dart:14)
    super.initState();
    _retrieveData();
  }