copyWith method

MyoroTabViewConfiguration copyWith({
  1. int? initiallySelectedTabIndex,
  2. List<MyoroTabViewTab>? tabs,
})
inherited

Implementation

MyoroTabViewConfiguration copyWith({int? initiallySelectedTabIndex, List<MyoroTabViewTab>? tabs}) {
  return MyoroTabViewConfiguration(
    initiallySelectedTabIndex: initiallySelectedTabIndex ?? self.initiallySelectedTabIndex,
    tabs: tabs ?? self.tabs,
  );
}