Blame view

lib/tab/blocs/tab_state.dart 190 Bytes
2a29701f   liangchengyou   feat:提交代码
1
2
3
4
5
6
7
8
  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);
  }