123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import 'package:cs_resources/generated/assets.dart';
- import 'package:flutter/material.dart';
- import 'package:shared/utils/color_utils.dart';
- class NewsfeedState {
- int? useTag = 0;
- int? curPage;
- int? pageSize;
- int? filterCount;
- int? activeIndex = 0;
- List tabsList = [];
- List? list = [];
- NewsfeedState copyWith({
- int? useTag,
- int? curPage,
- int? pageSize,
- int? filterCount,
- int? activeIndex,
- List? tabsList,
- List? list,
- }) {
- return NewsfeedState(
- useTag: useTag ?? this.useTag,
- curPage: curPage ?? this.curPage,
- pageSize: pageSize ?? this.pageSize,
- filterCount: filterCount ?? this.filterCount,
- activeIndex: activeIndex ?? this.activeIndex,
- tabsList: tabsList ?? this.tabsList,
- list: list ?? this.list,
- );
- }
- Map<String, dynamic> toMap() {
- return {
- 'useTag': this.useTag,
- 'curPage': this.curPage,
- 'pageSize': this.pageSize,
- 'filterCount': this.filterCount,
- 'activeIndex': this.activeIndex,
- 'tabsList': this.tabsList,
- 'list': this.list,
- };
- }
- factory NewsfeedState.fromMap(Map<String, dynamic> map) {
- return NewsfeedState(
- useTag: map['useTag'] as int,
- curPage: map['curPage'] as int,
- pageSize: map['pageSize'] as int,
- filterCount: map['filterCount'] as int,
- activeIndex: map['activeIndex'] as int,
- tabsList: map['tabsList'] as List,
- list: map['list'] as List,
- );
- }
- NewsfeedState({
- this.useTag,
- this.curPage,
- this.pageSize,
- this.filterCount,
- this.activeIndex,
- required this.tabsList,
- this.list,
- });
- }
|