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