tab_state.dart 190 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 part of 'tab_bloc.dart'; @immutable class TabState { final int index; const TabState({this.index = 0}); TabState copyWith({int? index}) => TabState(index: index ?? this.index); }