1234567891011121314151617181920212223 |
- class MyPostsState {
- int activeTabIdx = 0;
- List<Map<String, dynamic>>? tabsList;
- int currentPageViewIdx = 0;
- MyPostsState({
- this.activeTabIdx = 0,
- this.tabsList,
- required this.currentPageViewIdx,
- });
- MyPostsState copyWith({
- int? activeTabIdx,
- List<Map<String, dynamic>>? tabsList,
- int? currentPageViewIdx,
- }) {
- return MyPostsState(
- activeTabIdx: activeTabIdx ?? this.activeTabIdx,
- currentPageViewIdx: currentPageViewIdx ?? this.currentPageViewIdx,
- tabsList: tabsList ?? this.tabsList,
- );
- }
- }
|