Just remove const
const
Replace this code :
body: const TabBarView( children:tabInfoList.map((e)=>e.getView()).toList(),),
With :
body: TabBarView( children:tabInfoList.map((e)=>e.getView()).toList(),),