Logo white

GitLab

liangchengyou / wow_english

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wow_english
  • lib
  • pages
  • tab
  • blocs
  • tab_state.dart
  • feat:调整文件结构
    4b358e22
    liangchengyou authored
    2023-06-20 20:19:44 +0800  
    Browse Code »
tab_state.dart 190 Bytes
Raw Blame History Permalink
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);
}