tab_state.dart 190 Bytes
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);
}