10 lines
227 B
Dart
10 lines
227 B
Dart
part of 'details_bloc.dart';
|
|
|
|
@freezed
|
|
class DetailsState with _$DetailsState {
|
|
factory DetailsState({
|
|
TrackingMedium? data,
|
|
@Default(TrackingMediumType.anime) TrackingMediumType trackingType,
|
|
}) = _DetailsState;
|
|
}
|