29 lines
590 B
Dart
29 lines
590 B
Dart
|
import 'package:equatable/equatable.dart';
|
||
|
import 'package:pmu_lab_1/domain/models/home.dart';
|
||
|
import 'package:copy_with_extension/copy_with_extension.dart';
|
||
|
|
||
|
part 'state.g.dart';
|
||
|
|
||
|
@CopyWith()
|
||
|
class HomeState extends Equatable {
|
||
|
final HomeData? data;
|
||
|
final bool isLoading;
|
||
|
final bool isPaginationLoading;
|
||
|
final String? error;
|
||
|
|
||
|
const HomeState({
|
||
|
this.data,
|
||
|
this.isLoading = false,
|
||
|
this.isPaginationLoading = false,
|
||
|
this.error,
|
||
|
});
|
||
|
|
||
|
@override
|
||
|
List<Object?> get props => [
|
||
|
data,
|
||
|
isLoading,
|
||
|
isPaginationLoading,
|
||
|
error,
|
||
|
];
|
||
|
}
|