createPageView method

dynamic createPageView()

Implementation

dynamic createPageView() {
  if (certificateKD != null) {
    List<Tab> tabs = [];
    certificateKD!.nv.asMap().forEach((index, nv) {
      tabs.add(Tab(text: nv.ten));
    });

    return tabs;
  }
}