// coverage:ignore-file // GENERATED CODE - DO NOT MODIFY BY HAND // ignore_for_file: type=lint // ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark part of 'product.dart'; // ************************************************************************** // FreezedGenerator // ************************************************************************** T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models', ); /// @nodoc mixin _$ListProduct { List get products => throw _privateConstructorUsedError; int get totalCount => throw _privateConstructorUsedError; int get page => throw _privateConstructorUsedError; int get limit => throw _privateConstructorUsedError; int get totalPages => throw _privateConstructorUsedError; /// Create a copy of ListProduct /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) $ListProductCopyWith get copyWith => throw _privateConstructorUsedError; } /// @nodoc abstract class $ListProductCopyWith<$Res> { factory $ListProductCopyWith( ListProduct value, $Res Function(ListProduct) then, ) = _$ListProductCopyWithImpl<$Res, ListProduct>; @useResult $Res call({ List products, int totalCount, int page, int limit, int totalPages, }); } /// @nodoc class _$ListProductCopyWithImpl<$Res, $Val extends ListProduct> implements $ListProductCopyWith<$Res> { _$ListProductCopyWithImpl(this._value, this._then); // ignore: unused_field final $Val _value; // ignore: unused_field final $Res Function($Val) _then; /// Create a copy of ListProduct /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? products = null, Object? totalCount = null, Object? page = null, Object? limit = null, Object? totalPages = null, }) { return _then( _value.copyWith( products: null == products ? _value.products : products // ignore: cast_nullable_to_non_nullable as List, totalCount: null == totalCount ? _value.totalCount : totalCount // ignore: cast_nullable_to_non_nullable as int, page: null == page ? _value.page : page // ignore: cast_nullable_to_non_nullable as int, limit: null == limit ? _value.limit : limit // ignore: cast_nullable_to_non_nullable as int, totalPages: null == totalPages ? _value.totalPages : totalPages // ignore: cast_nullable_to_non_nullable as int, ) as $Val, ); } } /// @nodoc abstract class _$$ListProductImplCopyWith<$Res> implements $ListProductCopyWith<$Res> { factory _$$ListProductImplCopyWith( _$ListProductImpl value, $Res Function(_$ListProductImpl) then, ) = __$$ListProductImplCopyWithImpl<$Res>; @override @useResult $Res call({ List products, int totalCount, int page, int limit, int totalPages, }); } /// @nodoc class __$$ListProductImplCopyWithImpl<$Res> extends _$ListProductCopyWithImpl<$Res, _$ListProductImpl> implements _$$ListProductImplCopyWith<$Res> { __$$ListProductImplCopyWithImpl( _$ListProductImpl _value, $Res Function(_$ListProductImpl) _then, ) : super(_value, _then); /// Create a copy of ListProduct /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? products = null, Object? totalCount = null, Object? page = null, Object? limit = null, Object? totalPages = null, }) { return _then( _$ListProductImpl( products: null == products ? _value._products : products // ignore: cast_nullable_to_non_nullable as List, totalCount: null == totalCount ? _value.totalCount : totalCount // ignore: cast_nullable_to_non_nullable as int, page: null == page ? _value.page : page // ignore: cast_nullable_to_non_nullable as int, limit: null == limit ? _value.limit : limit // ignore: cast_nullable_to_non_nullable as int, totalPages: null == totalPages ? _value.totalPages : totalPages // ignore: cast_nullable_to_non_nullable as int, ), ); } } /// @nodoc class _$ListProductImpl with DiagnosticableTreeMixin implements _ListProduct { const _$ListProductImpl({ required final List products, required this.totalCount, required this.page, required this.limit, required this.totalPages, }) : _products = products; final List _products; @override List get products { if (_products is EqualUnmodifiableListView) return _products; // ignore: implicit_dynamic_type return EqualUnmodifiableListView(_products); } @override final int totalCount; @override final int page; @override final int limit; @override final int totalPages; @override String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) { return 'ListProduct(products: $products, totalCount: $totalCount, page: $page, limit: $limit, totalPages: $totalPages)'; } @override void debugFillProperties(DiagnosticPropertiesBuilder properties) { super.debugFillProperties(properties); properties ..add(DiagnosticsProperty('type', 'ListProduct')) ..add(DiagnosticsProperty('products', products)) ..add(DiagnosticsProperty('totalCount', totalCount)) ..add(DiagnosticsProperty('page', page)) ..add(DiagnosticsProperty('limit', limit)) ..add(DiagnosticsProperty('totalPages', totalPages)); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$ListProductImpl && const DeepCollectionEquality().equals(other._products, _products) && (identical(other.totalCount, totalCount) || other.totalCount == totalCount) && (identical(other.page, page) || other.page == page) && (identical(other.limit, limit) || other.limit == limit) && (identical(other.totalPages, totalPages) || other.totalPages == totalPages)); } @override int get hashCode => Object.hash( runtimeType, const DeepCollectionEquality().hash(_products), totalCount, page, limit, totalPages, ); /// Create a copy of ListProduct /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @override @pragma('vm:prefer-inline') _$$ListProductImplCopyWith<_$ListProductImpl> get copyWith => __$$ListProductImplCopyWithImpl<_$ListProductImpl>(this, _$identity); } abstract class _ListProduct implements ListProduct { const factory _ListProduct({ required final List products, required final int totalCount, required final int page, required final int limit, required final int totalPages, }) = _$ListProductImpl; @override List get products; @override int get totalCount; @override int get page; @override int get limit; @override int get totalPages; /// Create a copy of ListProduct /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) _$$ListProductImplCopyWith<_$ListProductImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc mixin _$Product { String get id => throw _privateConstructorUsedError; String get organizationId => throw _privateConstructorUsedError; String get categoryId => throw _privateConstructorUsedError; String get sku => throw _privateConstructorUsedError; String get name => throw _privateConstructorUsedError; String get description => throw _privateConstructorUsedError; double get price => throw _privateConstructorUsedError; double get cost => throw _privateConstructorUsedError; String get businessType => throw _privateConstructorUsedError; String get imageUrl => throw _privateConstructorUsedError; String get printerType => throw _privateConstructorUsedError; Map get metadata => throw _privateConstructorUsedError; bool get isActive => throw _privateConstructorUsedError; String get createdAt => throw _privateConstructorUsedError; String get updatedAt => throw _privateConstructorUsedError; List get variants => throw _privateConstructorUsedError; /// Create a copy of Product /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) $ProductCopyWith get copyWith => throw _privateConstructorUsedError; } /// @nodoc abstract class $ProductCopyWith<$Res> { factory $ProductCopyWith(Product value, $Res Function(Product) then) = _$ProductCopyWithImpl<$Res, Product>; @useResult $Res call({ String id, String organizationId, String categoryId, String sku, String name, String description, double price, double cost, String businessType, String imageUrl, String printerType, Map metadata, bool isActive, String createdAt, String updatedAt, List variants, }); } /// @nodoc class _$ProductCopyWithImpl<$Res, $Val extends Product> implements $ProductCopyWith<$Res> { _$ProductCopyWithImpl(this._value, this._then); // ignore: unused_field final $Val _value; // ignore: unused_field final $Res Function($Val) _then; /// Create a copy of Product /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? id = null, Object? organizationId = null, Object? categoryId = null, Object? sku = null, Object? name = null, Object? description = null, Object? price = null, Object? cost = null, Object? businessType = null, Object? imageUrl = null, Object? printerType = null, Object? metadata = null, Object? isActive = null, Object? createdAt = null, Object? updatedAt = null, Object? variants = null, }) { return _then( _value.copyWith( id: null == id ? _value.id : id // ignore: cast_nullable_to_non_nullable as String, organizationId: null == organizationId ? _value.organizationId : organizationId // ignore: cast_nullable_to_non_nullable as String, categoryId: null == categoryId ? _value.categoryId : categoryId // ignore: cast_nullable_to_non_nullable as String, sku: null == sku ? _value.sku : sku // ignore: cast_nullable_to_non_nullable as String, name: null == name ? _value.name : name // ignore: cast_nullable_to_non_nullable as String, description: null == description ? _value.description : description // ignore: cast_nullable_to_non_nullable as String, price: null == price ? _value.price : price // ignore: cast_nullable_to_non_nullable as double, cost: null == cost ? _value.cost : cost // ignore: cast_nullable_to_non_nullable as double, businessType: null == businessType ? _value.businessType : businessType // ignore: cast_nullable_to_non_nullable as String, imageUrl: null == imageUrl ? _value.imageUrl : imageUrl // ignore: cast_nullable_to_non_nullable as String, printerType: null == printerType ? _value.printerType : printerType // ignore: cast_nullable_to_non_nullable as String, metadata: null == metadata ? _value.metadata : metadata // ignore: cast_nullable_to_non_nullable as Map, isActive: null == isActive ? _value.isActive : isActive // ignore: cast_nullable_to_non_nullable as bool, createdAt: null == createdAt ? _value.createdAt : createdAt // ignore: cast_nullable_to_non_nullable as String, updatedAt: null == updatedAt ? _value.updatedAt : updatedAt // ignore: cast_nullable_to_non_nullable as String, variants: null == variants ? _value.variants : variants // ignore: cast_nullable_to_non_nullable as List, ) as $Val, ); } } /// @nodoc abstract class _$$ProductImplCopyWith<$Res> implements $ProductCopyWith<$Res> { factory _$$ProductImplCopyWith( _$ProductImpl value, $Res Function(_$ProductImpl) then, ) = __$$ProductImplCopyWithImpl<$Res>; @override @useResult $Res call({ String id, String organizationId, String categoryId, String sku, String name, String description, double price, double cost, String businessType, String imageUrl, String printerType, Map metadata, bool isActive, String createdAt, String updatedAt, List variants, }); } /// @nodoc class __$$ProductImplCopyWithImpl<$Res> extends _$ProductCopyWithImpl<$Res, _$ProductImpl> implements _$$ProductImplCopyWith<$Res> { __$$ProductImplCopyWithImpl( _$ProductImpl _value, $Res Function(_$ProductImpl) _then, ) : super(_value, _then); /// Create a copy of Product /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? id = null, Object? organizationId = null, Object? categoryId = null, Object? sku = null, Object? name = null, Object? description = null, Object? price = null, Object? cost = null, Object? businessType = null, Object? imageUrl = null, Object? printerType = null, Object? metadata = null, Object? isActive = null, Object? createdAt = null, Object? updatedAt = null, Object? variants = null, }) { return _then( _$ProductImpl( id: null == id ? _value.id : id // ignore: cast_nullable_to_non_nullable as String, organizationId: null == organizationId ? _value.organizationId : organizationId // ignore: cast_nullable_to_non_nullable as String, categoryId: null == categoryId ? _value.categoryId : categoryId // ignore: cast_nullable_to_non_nullable as String, sku: null == sku ? _value.sku : sku // ignore: cast_nullable_to_non_nullable as String, name: null == name ? _value.name : name // ignore: cast_nullable_to_non_nullable as String, description: null == description ? _value.description : description // ignore: cast_nullable_to_non_nullable as String, price: null == price ? _value.price : price // ignore: cast_nullable_to_non_nullable as double, cost: null == cost ? _value.cost : cost // ignore: cast_nullable_to_non_nullable as double, businessType: null == businessType ? _value.businessType : businessType // ignore: cast_nullable_to_non_nullable as String, imageUrl: null == imageUrl ? _value.imageUrl : imageUrl // ignore: cast_nullable_to_non_nullable as String, printerType: null == printerType ? _value.printerType : printerType // ignore: cast_nullable_to_non_nullable as String, metadata: null == metadata ? _value._metadata : metadata // ignore: cast_nullable_to_non_nullable as Map, isActive: null == isActive ? _value.isActive : isActive // ignore: cast_nullable_to_non_nullable as bool, createdAt: null == createdAt ? _value.createdAt : createdAt // ignore: cast_nullable_to_non_nullable as String, updatedAt: null == updatedAt ? _value.updatedAt : updatedAt // ignore: cast_nullable_to_non_nullable as String, variants: null == variants ? _value._variants : variants // ignore: cast_nullable_to_non_nullable as List, ), ); } } /// @nodoc class _$ProductImpl with DiagnosticableTreeMixin implements _Product { const _$ProductImpl({ required this.id, required this.organizationId, required this.categoryId, required this.sku, required this.name, required this.description, required this.price, required this.cost, required this.businessType, required this.imageUrl, required this.printerType, required final Map metadata, required this.isActive, required this.createdAt, required this.updatedAt, required final List variants, }) : _metadata = metadata, _variants = variants; @override final String id; @override final String organizationId; @override final String categoryId; @override final String sku; @override final String name; @override final String description; @override final double price; @override final double cost; @override final String businessType; @override final String imageUrl; @override final String printerType; final Map _metadata; @override Map get metadata { if (_metadata is EqualUnmodifiableMapView) return _metadata; // ignore: implicit_dynamic_type return EqualUnmodifiableMapView(_metadata); } @override final bool isActive; @override final String createdAt; @override final String updatedAt; final List _variants; @override List get variants { if (_variants is EqualUnmodifiableListView) return _variants; // ignore: implicit_dynamic_type return EqualUnmodifiableListView(_variants); } @override String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) { return 'Product(id: $id, organizationId: $organizationId, categoryId: $categoryId, sku: $sku, name: $name, description: $description, price: $price, cost: $cost, businessType: $businessType, imageUrl: $imageUrl, printerType: $printerType, metadata: $metadata, isActive: $isActive, createdAt: $createdAt, updatedAt: $updatedAt, variants: $variants)'; } @override void debugFillProperties(DiagnosticPropertiesBuilder properties) { super.debugFillProperties(properties); properties ..add(DiagnosticsProperty('type', 'Product')) ..add(DiagnosticsProperty('id', id)) ..add(DiagnosticsProperty('organizationId', organizationId)) ..add(DiagnosticsProperty('categoryId', categoryId)) ..add(DiagnosticsProperty('sku', sku)) ..add(DiagnosticsProperty('name', name)) ..add(DiagnosticsProperty('description', description)) ..add(DiagnosticsProperty('price', price)) ..add(DiagnosticsProperty('cost', cost)) ..add(DiagnosticsProperty('businessType', businessType)) ..add(DiagnosticsProperty('imageUrl', imageUrl)) ..add(DiagnosticsProperty('printerType', printerType)) ..add(DiagnosticsProperty('metadata', metadata)) ..add(DiagnosticsProperty('isActive', isActive)) ..add(DiagnosticsProperty('createdAt', createdAt)) ..add(DiagnosticsProperty('updatedAt', updatedAt)) ..add(DiagnosticsProperty('variants', variants)); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$ProductImpl && (identical(other.id, id) || other.id == id) && (identical(other.organizationId, organizationId) || other.organizationId == organizationId) && (identical(other.categoryId, categoryId) || other.categoryId == categoryId) && (identical(other.sku, sku) || other.sku == sku) && (identical(other.name, name) || other.name == name) && (identical(other.description, description) || other.description == description) && (identical(other.price, price) || other.price == price) && (identical(other.cost, cost) || other.cost == cost) && (identical(other.businessType, businessType) || other.businessType == businessType) && (identical(other.imageUrl, imageUrl) || other.imageUrl == imageUrl) && (identical(other.printerType, printerType) || other.printerType == printerType) && const DeepCollectionEquality().equals(other._metadata, _metadata) && (identical(other.isActive, isActive) || other.isActive == isActive) && (identical(other.createdAt, createdAt) || other.createdAt == createdAt) && (identical(other.updatedAt, updatedAt) || other.updatedAt == updatedAt) && const DeepCollectionEquality().equals(other._variants, _variants)); } @override int get hashCode => Object.hash( runtimeType, id, organizationId, categoryId, sku, name, description, price, cost, businessType, imageUrl, printerType, const DeepCollectionEquality().hash(_metadata), isActive, createdAt, updatedAt, const DeepCollectionEquality().hash(_variants), ); /// Create a copy of Product /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @override @pragma('vm:prefer-inline') _$$ProductImplCopyWith<_$ProductImpl> get copyWith => __$$ProductImplCopyWithImpl<_$ProductImpl>(this, _$identity); } abstract class _Product implements Product { const factory _Product({ required final String id, required final String organizationId, required final String categoryId, required final String sku, required final String name, required final String description, required final double price, required final double cost, required final String businessType, required final String imageUrl, required final String printerType, required final Map metadata, required final bool isActive, required final String createdAt, required final String updatedAt, required final List variants, }) = _$ProductImpl; @override String get id; @override String get organizationId; @override String get categoryId; @override String get sku; @override String get name; @override String get description; @override double get price; @override double get cost; @override String get businessType; @override String get imageUrl; @override String get printerType; @override Map get metadata; @override bool get isActive; @override String get createdAt; @override String get updatedAt; @override List get variants; /// Create a copy of Product /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) _$$ProductImplCopyWith<_$ProductImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc mixin _$ProductVariant { String get id => throw _privateConstructorUsedError; String get productId => throw _privateConstructorUsedError; String get name => throw _privateConstructorUsedError; double get priceModifier => throw _privateConstructorUsedError; double get cost => throw _privateConstructorUsedError; Map get metadata => throw _privateConstructorUsedError; String get createdAt => throw _privateConstructorUsedError; String get updatedAt => throw _privateConstructorUsedError; /// Create a copy of ProductVariant /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) $ProductVariantCopyWith get copyWith => throw _privateConstructorUsedError; } /// @nodoc abstract class $ProductVariantCopyWith<$Res> { factory $ProductVariantCopyWith( ProductVariant value, $Res Function(ProductVariant) then, ) = _$ProductVariantCopyWithImpl<$Res, ProductVariant>; @useResult $Res call({ String id, String productId, String name, double priceModifier, double cost, Map metadata, String createdAt, String updatedAt, }); } /// @nodoc class _$ProductVariantCopyWithImpl<$Res, $Val extends ProductVariant> implements $ProductVariantCopyWith<$Res> { _$ProductVariantCopyWithImpl(this._value, this._then); // ignore: unused_field final $Val _value; // ignore: unused_field final $Res Function($Val) _then; /// Create a copy of ProductVariant /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? id = null, Object? productId = null, Object? name = null, Object? priceModifier = null, Object? cost = null, Object? metadata = null, Object? createdAt = null, Object? updatedAt = null, }) { return _then( _value.copyWith( id: null == id ? _value.id : id // ignore: cast_nullable_to_non_nullable as String, productId: null == productId ? _value.productId : productId // ignore: cast_nullable_to_non_nullable as String, name: null == name ? _value.name : name // ignore: cast_nullable_to_non_nullable as String, priceModifier: null == priceModifier ? _value.priceModifier : priceModifier // ignore: cast_nullable_to_non_nullable as double, cost: null == cost ? _value.cost : cost // ignore: cast_nullable_to_non_nullable as double, metadata: null == metadata ? _value.metadata : metadata // ignore: cast_nullable_to_non_nullable as Map, createdAt: null == createdAt ? _value.createdAt : createdAt // ignore: cast_nullable_to_non_nullable as String, updatedAt: null == updatedAt ? _value.updatedAt : updatedAt // ignore: cast_nullable_to_non_nullable as String, ) as $Val, ); } } /// @nodoc abstract class _$$ProductVariantImplCopyWith<$Res> implements $ProductVariantCopyWith<$Res> { factory _$$ProductVariantImplCopyWith( _$ProductVariantImpl value, $Res Function(_$ProductVariantImpl) then, ) = __$$ProductVariantImplCopyWithImpl<$Res>; @override @useResult $Res call({ String id, String productId, String name, double priceModifier, double cost, Map metadata, String createdAt, String updatedAt, }); } /// @nodoc class __$$ProductVariantImplCopyWithImpl<$Res> extends _$ProductVariantCopyWithImpl<$Res, _$ProductVariantImpl> implements _$$ProductVariantImplCopyWith<$Res> { __$$ProductVariantImplCopyWithImpl( _$ProductVariantImpl _value, $Res Function(_$ProductVariantImpl) _then, ) : super(_value, _then); /// Create a copy of ProductVariant /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? id = null, Object? productId = null, Object? name = null, Object? priceModifier = null, Object? cost = null, Object? metadata = null, Object? createdAt = null, Object? updatedAt = null, }) { return _then( _$ProductVariantImpl( id: null == id ? _value.id : id // ignore: cast_nullable_to_non_nullable as String, productId: null == productId ? _value.productId : productId // ignore: cast_nullable_to_non_nullable as String, name: null == name ? _value.name : name // ignore: cast_nullable_to_non_nullable as String, priceModifier: null == priceModifier ? _value.priceModifier : priceModifier // ignore: cast_nullable_to_non_nullable as double, cost: null == cost ? _value.cost : cost // ignore: cast_nullable_to_non_nullable as double, metadata: null == metadata ? _value._metadata : metadata // ignore: cast_nullable_to_non_nullable as Map, createdAt: null == createdAt ? _value.createdAt : createdAt // ignore: cast_nullable_to_non_nullable as String, updatedAt: null == updatedAt ? _value.updatedAt : updatedAt // ignore: cast_nullable_to_non_nullable as String, ), ); } } /// @nodoc class _$ProductVariantImpl with DiagnosticableTreeMixin implements _ProductVariant { const _$ProductVariantImpl({ required this.id, required this.productId, required this.name, required this.priceModifier, required this.cost, required final Map metadata, required this.createdAt, required this.updatedAt, }) : _metadata = metadata; @override final String id; @override final String productId; @override final String name; @override final double priceModifier; @override final double cost; final Map _metadata; @override Map get metadata { if (_metadata is EqualUnmodifiableMapView) return _metadata; // ignore: implicit_dynamic_type return EqualUnmodifiableMapView(_metadata); } @override final String createdAt; @override final String updatedAt; @override String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) { return 'ProductVariant(id: $id, productId: $productId, name: $name, priceModifier: $priceModifier, cost: $cost, metadata: $metadata, createdAt: $createdAt, updatedAt: $updatedAt)'; } @override void debugFillProperties(DiagnosticPropertiesBuilder properties) { super.debugFillProperties(properties); properties ..add(DiagnosticsProperty('type', 'ProductVariant')) ..add(DiagnosticsProperty('id', id)) ..add(DiagnosticsProperty('productId', productId)) ..add(DiagnosticsProperty('name', name)) ..add(DiagnosticsProperty('priceModifier', priceModifier)) ..add(DiagnosticsProperty('cost', cost)) ..add(DiagnosticsProperty('metadata', metadata)) ..add(DiagnosticsProperty('createdAt', createdAt)) ..add(DiagnosticsProperty('updatedAt', updatedAt)); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$ProductVariantImpl && (identical(other.id, id) || other.id == id) && (identical(other.productId, productId) || other.productId == productId) && (identical(other.name, name) || other.name == name) && (identical(other.priceModifier, priceModifier) || other.priceModifier == priceModifier) && (identical(other.cost, cost) || other.cost == cost) && const DeepCollectionEquality().equals(other._metadata, _metadata) && (identical(other.createdAt, createdAt) || other.createdAt == createdAt) && (identical(other.updatedAt, updatedAt) || other.updatedAt == updatedAt)); } @override int get hashCode => Object.hash( runtimeType, id, productId, name, priceModifier, cost, const DeepCollectionEquality().hash(_metadata), createdAt, updatedAt, ); /// Create a copy of ProductVariant /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @override @pragma('vm:prefer-inline') _$$ProductVariantImplCopyWith<_$ProductVariantImpl> get copyWith => __$$ProductVariantImplCopyWithImpl<_$ProductVariantImpl>( this, _$identity, ); } abstract class _ProductVariant implements ProductVariant { const factory _ProductVariant({ required final String id, required final String productId, required final String name, required final double priceModifier, required final double cost, required final Map metadata, required final String createdAt, required final String updatedAt, }) = _$ProductVariantImpl; @override String get id; @override String get productId; @override String get name; @override double get priceModifier; @override double get cost; @override Map get metadata; @override String get createdAt; @override String get updatedAt; /// Create a copy of ProductVariant /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) _$$ProductVariantImplCopyWith<_$ProductVariantImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc mixin _$ProductQuantity { Product get product => throw _privateConstructorUsedError; ProductVariant? get variant => throw _privateConstructorUsedError; int get quantity => throw _privateConstructorUsedError; String get notes => throw _privateConstructorUsedError; /// Create a copy of ProductQuantity /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) $ProductQuantityCopyWith get copyWith => throw _privateConstructorUsedError; } /// @nodoc abstract class $ProductQuantityCopyWith<$Res> { factory $ProductQuantityCopyWith( ProductQuantity value, $Res Function(ProductQuantity) then, ) = _$ProductQuantityCopyWithImpl<$Res, ProductQuantity>; @useResult $Res call({ Product product, ProductVariant? variant, int quantity, String notes, }); $ProductCopyWith<$Res> get product; $ProductVariantCopyWith<$Res>? get variant; } /// @nodoc class _$ProductQuantityCopyWithImpl<$Res, $Val extends ProductQuantity> implements $ProductQuantityCopyWith<$Res> { _$ProductQuantityCopyWithImpl(this._value, this._then); // ignore: unused_field final $Val _value; // ignore: unused_field final $Res Function($Val) _then; /// Create a copy of ProductQuantity /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? product = null, Object? variant = freezed, Object? quantity = null, Object? notes = null, }) { return _then( _value.copyWith( product: null == product ? _value.product : product // ignore: cast_nullable_to_non_nullable as Product, variant: freezed == variant ? _value.variant : variant // ignore: cast_nullable_to_non_nullable as ProductVariant?, quantity: null == quantity ? _value.quantity : quantity // ignore: cast_nullable_to_non_nullable as int, notes: null == notes ? _value.notes : notes // ignore: cast_nullable_to_non_nullable as String, ) as $Val, ); } /// Create a copy of ProductQuantity /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $ProductCopyWith<$Res> get product { return $ProductCopyWith<$Res>(_value.product, (value) { return _then(_value.copyWith(product: value) as $Val); }); } /// Create a copy of ProductQuantity /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $ProductVariantCopyWith<$Res>? get variant { if (_value.variant == null) { return null; } return $ProductVariantCopyWith<$Res>(_value.variant!, (value) { return _then(_value.copyWith(variant: value) as $Val); }); } } /// @nodoc abstract class _$$ProductQuantityImplCopyWith<$Res> implements $ProductQuantityCopyWith<$Res> { factory _$$ProductQuantityImplCopyWith( _$ProductQuantityImpl value, $Res Function(_$ProductQuantityImpl) then, ) = __$$ProductQuantityImplCopyWithImpl<$Res>; @override @useResult $Res call({ Product product, ProductVariant? variant, int quantity, String notes, }); @override $ProductCopyWith<$Res> get product; @override $ProductVariantCopyWith<$Res>? get variant; } /// @nodoc class __$$ProductQuantityImplCopyWithImpl<$Res> extends _$ProductQuantityCopyWithImpl<$Res, _$ProductQuantityImpl> implements _$$ProductQuantityImplCopyWith<$Res> { __$$ProductQuantityImplCopyWithImpl( _$ProductQuantityImpl _value, $Res Function(_$ProductQuantityImpl) _then, ) : super(_value, _then); /// Create a copy of ProductQuantity /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? product = null, Object? variant = freezed, Object? quantity = null, Object? notes = null, }) { return _then( _$ProductQuantityImpl( product: null == product ? _value.product : product // ignore: cast_nullable_to_non_nullable as Product, variant: freezed == variant ? _value.variant : variant // ignore: cast_nullable_to_non_nullable as ProductVariant?, quantity: null == quantity ? _value.quantity : quantity // ignore: cast_nullable_to_non_nullable as int, notes: null == notes ? _value.notes : notes // ignore: cast_nullable_to_non_nullable as String, ), ); } } /// @nodoc class _$ProductQuantityImpl with DiagnosticableTreeMixin implements _ProductQuantity { const _$ProductQuantityImpl({ required this.product, this.variant, required this.quantity, required this.notes, }); @override final Product product; @override final ProductVariant? variant; @override final int quantity; @override final String notes; @override String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) { return 'ProductQuantity(product: $product, variant: $variant, quantity: $quantity, notes: $notes)'; } @override void debugFillProperties(DiagnosticPropertiesBuilder properties) { super.debugFillProperties(properties); properties ..add(DiagnosticsProperty('type', 'ProductQuantity')) ..add(DiagnosticsProperty('product', product)) ..add(DiagnosticsProperty('variant', variant)) ..add(DiagnosticsProperty('quantity', quantity)) ..add(DiagnosticsProperty('notes', notes)); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$ProductQuantityImpl && (identical(other.product, product) || other.product == product) && (identical(other.variant, variant) || other.variant == variant) && (identical(other.quantity, quantity) || other.quantity == quantity) && (identical(other.notes, notes) || other.notes == notes)); } @override int get hashCode => Object.hash(runtimeType, product, variant, quantity, notes); /// Create a copy of ProductQuantity /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @override @pragma('vm:prefer-inline') _$$ProductQuantityImplCopyWith<_$ProductQuantityImpl> get copyWith => __$$ProductQuantityImplCopyWithImpl<_$ProductQuantityImpl>( this, _$identity, ); } abstract class _ProductQuantity implements ProductQuantity { const factory _ProductQuantity({ required final Product product, final ProductVariant? variant, required final int quantity, required final String notes, }) = _$ProductQuantityImpl; @override Product get product; @override ProductVariant? get variant; @override int get quantity; @override String get notes; /// Create a copy of ProductQuantity /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) _$$ProductQuantityImplCopyWith<_$ProductQuantityImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc mixin _$ProductFailure { @optionalTypeArgs TResult when({ required TResult Function(ApiFailure failure) serverError, required TResult Function() unexpectedError, required TResult Function() empty, required TResult Function(String erroMessage) localStorageError, required TResult Function(String erroMessage) dynamicErrorMessage, }) => throw _privateConstructorUsedError; @optionalTypeArgs TResult? whenOrNull({ TResult? Function(ApiFailure failure)? serverError, TResult? Function()? unexpectedError, TResult? Function()? empty, TResult? Function(String erroMessage)? localStorageError, TResult? Function(String erroMessage)? dynamicErrorMessage, }) => throw _privateConstructorUsedError; @optionalTypeArgs TResult maybeWhen({ TResult Function(ApiFailure failure)? serverError, TResult Function()? unexpectedError, TResult Function()? empty, TResult Function(String erroMessage)? localStorageError, TResult Function(String erroMessage)? dynamicErrorMessage, required TResult orElse(), }) => throw _privateConstructorUsedError; @optionalTypeArgs TResult map({ required TResult Function(_ServerError value) serverError, required TResult Function(_UnexpectedError value) unexpectedError, required TResult Function(_Empty value) empty, required TResult Function(_LocalStorageError value) localStorageError, required TResult Function(_DynamicErrorMessage value) dynamicErrorMessage, }) => throw _privateConstructorUsedError; @optionalTypeArgs TResult? mapOrNull({ TResult? Function(_ServerError value)? serverError, TResult? Function(_UnexpectedError value)? unexpectedError, TResult? Function(_Empty value)? empty, TResult? Function(_LocalStorageError value)? localStorageError, TResult? Function(_DynamicErrorMessage value)? dynamicErrorMessage, }) => throw _privateConstructorUsedError; @optionalTypeArgs TResult maybeMap({ TResult Function(_ServerError value)? serverError, TResult Function(_UnexpectedError value)? unexpectedError, TResult Function(_Empty value)? empty, TResult Function(_LocalStorageError value)? localStorageError, TResult Function(_DynamicErrorMessage value)? dynamicErrorMessage, required TResult orElse(), }) => throw _privateConstructorUsedError; } /// @nodoc abstract class $ProductFailureCopyWith<$Res> { factory $ProductFailureCopyWith( ProductFailure value, $Res Function(ProductFailure) then, ) = _$ProductFailureCopyWithImpl<$Res, ProductFailure>; } /// @nodoc class _$ProductFailureCopyWithImpl<$Res, $Val extends ProductFailure> implements $ProductFailureCopyWith<$Res> { _$ProductFailureCopyWithImpl(this._value, this._then); // ignore: unused_field final $Val _value; // ignore: unused_field final $Res Function($Val) _then; /// Create a copy of ProductFailure /// with the given fields replaced by the non-null parameter values. } /// @nodoc abstract class _$$ServerErrorImplCopyWith<$Res> { factory _$$ServerErrorImplCopyWith( _$ServerErrorImpl value, $Res Function(_$ServerErrorImpl) then, ) = __$$ServerErrorImplCopyWithImpl<$Res>; @useResult $Res call({ApiFailure failure}); $ApiFailureCopyWith<$Res> get failure; } /// @nodoc class __$$ServerErrorImplCopyWithImpl<$Res> extends _$ProductFailureCopyWithImpl<$Res, _$ServerErrorImpl> implements _$$ServerErrorImplCopyWith<$Res> { __$$ServerErrorImplCopyWithImpl( _$ServerErrorImpl _value, $Res Function(_$ServerErrorImpl) _then, ) : super(_value, _then); /// Create a copy of ProductFailure /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({Object? failure = null}) { return _then( _$ServerErrorImpl( null == failure ? _value.failure : failure // ignore: cast_nullable_to_non_nullable as ApiFailure, ), ); } /// Create a copy of ProductFailure /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $ApiFailureCopyWith<$Res> get failure { return $ApiFailureCopyWith<$Res>(_value.failure, (value) { return _then(_value.copyWith(failure: value)); }); } } /// @nodoc class _$ServerErrorImpl with DiagnosticableTreeMixin implements _ServerError { const _$ServerErrorImpl(this.failure); @override final ApiFailure failure; @override String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) { return 'ProductFailure.serverError(failure: $failure)'; } @override void debugFillProperties(DiagnosticPropertiesBuilder properties) { super.debugFillProperties(properties); properties ..add(DiagnosticsProperty('type', 'ProductFailure.serverError')) ..add(DiagnosticsProperty('failure', failure)); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$ServerErrorImpl && (identical(other.failure, failure) || other.failure == failure)); } @override int get hashCode => Object.hash(runtimeType, failure); /// Create a copy of ProductFailure /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @override @pragma('vm:prefer-inline') _$$ServerErrorImplCopyWith<_$ServerErrorImpl> get copyWith => __$$ServerErrorImplCopyWithImpl<_$ServerErrorImpl>(this, _$identity); @override @optionalTypeArgs TResult when({ required TResult Function(ApiFailure failure) serverError, required TResult Function() unexpectedError, required TResult Function() empty, required TResult Function(String erroMessage) localStorageError, required TResult Function(String erroMessage) dynamicErrorMessage, }) { return serverError(failure); } @override @optionalTypeArgs TResult? whenOrNull({ TResult? Function(ApiFailure failure)? serverError, TResult? Function()? unexpectedError, TResult? Function()? empty, TResult? Function(String erroMessage)? localStorageError, TResult? Function(String erroMessage)? dynamicErrorMessage, }) { return serverError?.call(failure); } @override @optionalTypeArgs TResult maybeWhen({ TResult Function(ApiFailure failure)? serverError, TResult Function()? unexpectedError, TResult Function()? empty, TResult Function(String erroMessage)? localStorageError, TResult Function(String erroMessage)? dynamicErrorMessage, required TResult orElse(), }) { if (serverError != null) { return serverError(failure); } return orElse(); } @override @optionalTypeArgs TResult map({ required TResult Function(_ServerError value) serverError, required TResult Function(_UnexpectedError value) unexpectedError, required TResult Function(_Empty value) empty, required TResult Function(_LocalStorageError value) localStorageError, required TResult Function(_DynamicErrorMessage value) dynamicErrorMessage, }) { return serverError(this); } @override @optionalTypeArgs TResult? mapOrNull({ TResult? Function(_ServerError value)? serverError, TResult? Function(_UnexpectedError value)? unexpectedError, TResult? Function(_Empty value)? empty, TResult? Function(_LocalStorageError value)? localStorageError, TResult? Function(_DynamicErrorMessage value)? dynamicErrorMessage, }) { return serverError?.call(this); } @override @optionalTypeArgs TResult maybeMap({ TResult Function(_ServerError value)? serverError, TResult Function(_UnexpectedError value)? unexpectedError, TResult Function(_Empty value)? empty, TResult Function(_LocalStorageError value)? localStorageError, TResult Function(_DynamicErrorMessage value)? dynamicErrorMessage, required TResult orElse(), }) { if (serverError != null) { return serverError(this); } return orElse(); } } abstract class _ServerError implements ProductFailure { const factory _ServerError(final ApiFailure failure) = _$ServerErrorImpl; ApiFailure get failure; /// Create a copy of ProductFailure /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) _$$ServerErrorImplCopyWith<_$ServerErrorImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc abstract class _$$UnexpectedErrorImplCopyWith<$Res> { factory _$$UnexpectedErrorImplCopyWith( _$UnexpectedErrorImpl value, $Res Function(_$UnexpectedErrorImpl) then, ) = __$$UnexpectedErrorImplCopyWithImpl<$Res>; } /// @nodoc class __$$UnexpectedErrorImplCopyWithImpl<$Res> extends _$ProductFailureCopyWithImpl<$Res, _$UnexpectedErrorImpl> implements _$$UnexpectedErrorImplCopyWith<$Res> { __$$UnexpectedErrorImplCopyWithImpl( _$UnexpectedErrorImpl _value, $Res Function(_$UnexpectedErrorImpl) _then, ) : super(_value, _then); /// Create a copy of ProductFailure /// with the given fields replaced by the non-null parameter values. } /// @nodoc class _$UnexpectedErrorImpl with DiagnosticableTreeMixin implements _UnexpectedError { const _$UnexpectedErrorImpl(); @override String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) { return 'ProductFailure.unexpectedError()'; } @override void debugFillProperties(DiagnosticPropertiesBuilder properties) { super.debugFillProperties(properties); properties ..add(DiagnosticsProperty('type', 'ProductFailure.unexpectedError')); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$UnexpectedErrorImpl); } @override int get hashCode => runtimeType.hashCode; @override @optionalTypeArgs TResult when({ required TResult Function(ApiFailure failure) serverError, required TResult Function() unexpectedError, required TResult Function() empty, required TResult Function(String erroMessage) localStorageError, required TResult Function(String erroMessage) dynamicErrorMessage, }) { return unexpectedError(); } @override @optionalTypeArgs TResult? whenOrNull({ TResult? Function(ApiFailure failure)? serverError, TResult? Function()? unexpectedError, TResult? Function()? empty, TResult? Function(String erroMessage)? localStorageError, TResult? Function(String erroMessage)? dynamicErrorMessage, }) { return unexpectedError?.call(); } @override @optionalTypeArgs TResult maybeWhen({ TResult Function(ApiFailure failure)? serverError, TResult Function()? unexpectedError, TResult Function()? empty, TResult Function(String erroMessage)? localStorageError, TResult Function(String erroMessage)? dynamicErrorMessage, required TResult orElse(), }) { if (unexpectedError != null) { return unexpectedError(); } return orElse(); } @override @optionalTypeArgs TResult map({ required TResult Function(_ServerError value) serverError, required TResult Function(_UnexpectedError value) unexpectedError, required TResult Function(_Empty value) empty, required TResult Function(_LocalStorageError value) localStorageError, required TResult Function(_DynamicErrorMessage value) dynamicErrorMessage, }) { return unexpectedError(this); } @override @optionalTypeArgs TResult? mapOrNull({ TResult? Function(_ServerError value)? serverError, TResult? Function(_UnexpectedError value)? unexpectedError, TResult? Function(_Empty value)? empty, TResult? Function(_LocalStorageError value)? localStorageError, TResult? Function(_DynamicErrorMessage value)? dynamicErrorMessage, }) { return unexpectedError?.call(this); } @override @optionalTypeArgs TResult maybeMap({ TResult Function(_ServerError value)? serverError, TResult Function(_UnexpectedError value)? unexpectedError, TResult Function(_Empty value)? empty, TResult Function(_LocalStorageError value)? localStorageError, TResult Function(_DynamicErrorMessage value)? dynamicErrorMessage, required TResult orElse(), }) { if (unexpectedError != null) { return unexpectedError(this); } return orElse(); } } abstract class _UnexpectedError implements ProductFailure { const factory _UnexpectedError() = _$UnexpectedErrorImpl; } /// @nodoc abstract class _$$EmptyImplCopyWith<$Res> { factory _$$EmptyImplCopyWith( _$EmptyImpl value, $Res Function(_$EmptyImpl) then, ) = __$$EmptyImplCopyWithImpl<$Res>; } /// @nodoc class __$$EmptyImplCopyWithImpl<$Res> extends _$ProductFailureCopyWithImpl<$Res, _$EmptyImpl> implements _$$EmptyImplCopyWith<$Res> { __$$EmptyImplCopyWithImpl( _$EmptyImpl _value, $Res Function(_$EmptyImpl) _then, ) : super(_value, _then); /// Create a copy of ProductFailure /// with the given fields replaced by the non-null parameter values. } /// @nodoc class _$EmptyImpl with DiagnosticableTreeMixin implements _Empty { const _$EmptyImpl(); @override String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) { return 'ProductFailure.empty()'; } @override void debugFillProperties(DiagnosticPropertiesBuilder properties) { super.debugFillProperties(properties); properties..add(DiagnosticsProperty('type', 'ProductFailure.empty')); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$EmptyImpl); } @override int get hashCode => runtimeType.hashCode; @override @optionalTypeArgs TResult when({ required TResult Function(ApiFailure failure) serverError, required TResult Function() unexpectedError, required TResult Function() empty, required TResult Function(String erroMessage) localStorageError, required TResult Function(String erroMessage) dynamicErrorMessage, }) { return empty(); } @override @optionalTypeArgs TResult? whenOrNull({ TResult? Function(ApiFailure failure)? serverError, TResult? Function()? unexpectedError, TResult? Function()? empty, TResult? Function(String erroMessage)? localStorageError, TResult? Function(String erroMessage)? dynamicErrorMessage, }) { return empty?.call(); } @override @optionalTypeArgs TResult maybeWhen({ TResult Function(ApiFailure failure)? serverError, TResult Function()? unexpectedError, TResult Function()? empty, TResult Function(String erroMessage)? localStorageError, TResult Function(String erroMessage)? dynamicErrorMessage, required TResult orElse(), }) { if (empty != null) { return empty(); } return orElse(); } @override @optionalTypeArgs TResult map({ required TResult Function(_ServerError value) serverError, required TResult Function(_UnexpectedError value) unexpectedError, required TResult Function(_Empty value) empty, required TResult Function(_LocalStorageError value) localStorageError, required TResult Function(_DynamicErrorMessage value) dynamicErrorMessage, }) { return empty(this); } @override @optionalTypeArgs TResult? mapOrNull({ TResult? Function(_ServerError value)? serverError, TResult? Function(_UnexpectedError value)? unexpectedError, TResult? Function(_Empty value)? empty, TResult? Function(_LocalStorageError value)? localStorageError, TResult? Function(_DynamicErrorMessage value)? dynamicErrorMessage, }) { return empty?.call(this); } @override @optionalTypeArgs TResult maybeMap({ TResult Function(_ServerError value)? serverError, TResult Function(_UnexpectedError value)? unexpectedError, TResult Function(_Empty value)? empty, TResult Function(_LocalStorageError value)? localStorageError, TResult Function(_DynamicErrorMessage value)? dynamicErrorMessage, required TResult orElse(), }) { if (empty != null) { return empty(this); } return orElse(); } } abstract class _Empty implements ProductFailure { const factory _Empty() = _$EmptyImpl; } /// @nodoc abstract class _$$LocalStorageErrorImplCopyWith<$Res> { factory _$$LocalStorageErrorImplCopyWith( _$LocalStorageErrorImpl value, $Res Function(_$LocalStorageErrorImpl) then, ) = __$$LocalStorageErrorImplCopyWithImpl<$Res>; @useResult $Res call({String erroMessage}); } /// @nodoc class __$$LocalStorageErrorImplCopyWithImpl<$Res> extends _$ProductFailureCopyWithImpl<$Res, _$LocalStorageErrorImpl> implements _$$LocalStorageErrorImplCopyWith<$Res> { __$$LocalStorageErrorImplCopyWithImpl( _$LocalStorageErrorImpl _value, $Res Function(_$LocalStorageErrorImpl) _then, ) : super(_value, _then); /// Create a copy of ProductFailure /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({Object? erroMessage = null}) { return _then( _$LocalStorageErrorImpl( null == erroMessage ? _value.erroMessage : erroMessage // ignore: cast_nullable_to_non_nullable as String, ), ); } } /// @nodoc class _$LocalStorageErrorImpl with DiagnosticableTreeMixin implements _LocalStorageError { const _$LocalStorageErrorImpl(this.erroMessage); @override final String erroMessage; @override String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) { return 'ProductFailure.localStorageError(erroMessage: $erroMessage)'; } @override void debugFillProperties(DiagnosticPropertiesBuilder properties) { super.debugFillProperties(properties); properties ..add(DiagnosticsProperty('type', 'ProductFailure.localStorageError')) ..add(DiagnosticsProperty('erroMessage', erroMessage)); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$LocalStorageErrorImpl && (identical(other.erroMessage, erroMessage) || other.erroMessage == erroMessage)); } @override int get hashCode => Object.hash(runtimeType, erroMessage); /// Create a copy of ProductFailure /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @override @pragma('vm:prefer-inline') _$$LocalStorageErrorImplCopyWith<_$LocalStorageErrorImpl> get copyWith => __$$LocalStorageErrorImplCopyWithImpl<_$LocalStorageErrorImpl>( this, _$identity, ); @override @optionalTypeArgs TResult when({ required TResult Function(ApiFailure failure) serverError, required TResult Function() unexpectedError, required TResult Function() empty, required TResult Function(String erroMessage) localStorageError, required TResult Function(String erroMessage) dynamicErrorMessage, }) { return localStorageError(erroMessage); } @override @optionalTypeArgs TResult? whenOrNull({ TResult? Function(ApiFailure failure)? serverError, TResult? Function()? unexpectedError, TResult? Function()? empty, TResult? Function(String erroMessage)? localStorageError, TResult? Function(String erroMessage)? dynamicErrorMessage, }) { return localStorageError?.call(erroMessage); } @override @optionalTypeArgs TResult maybeWhen({ TResult Function(ApiFailure failure)? serverError, TResult Function()? unexpectedError, TResult Function()? empty, TResult Function(String erroMessage)? localStorageError, TResult Function(String erroMessage)? dynamicErrorMessage, required TResult orElse(), }) { if (localStorageError != null) { return localStorageError(erroMessage); } return orElse(); } @override @optionalTypeArgs TResult map({ required TResult Function(_ServerError value) serverError, required TResult Function(_UnexpectedError value) unexpectedError, required TResult Function(_Empty value) empty, required TResult Function(_LocalStorageError value) localStorageError, required TResult Function(_DynamicErrorMessage value) dynamicErrorMessage, }) { return localStorageError(this); } @override @optionalTypeArgs TResult? mapOrNull({ TResult? Function(_ServerError value)? serverError, TResult? Function(_UnexpectedError value)? unexpectedError, TResult? Function(_Empty value)? empty, TResult? Function(_LocalStorageError value)? localStorageError, TResult? Function(_DynamicErrorMessage value)? dynamicErrorMessage, }) { return localStorageError?.call(this); } @override @optionalTypeArgs TResult maybeMap({ TResult Function(_ServerError value)? serverError, TResult Function(_UnexpectedError value)? unexpectedError, TResult Function(_Empty value)? empty, TResult Function(_LocalStorageError value)? localStorageError, TResult Function(_DynamicErrorMessage value)? dynamicErrorMessage, required TResult orElse(), }) { if (localStorageError != null) { return localStorageError(this); } return orElse(); } } abstract class _LocalStorageError implements ProductFailure { const factory _LocalStorageError(final String erroMessage) = _$LocalStorageErrorImpl; String get erroMessage; /// Create a copy of ProductFailure /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) _$$LocalStorageErrorImplCopyWith<_$LocalStorageErrorImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc abstract class _$$DynamicErrorMessageImplCopyWith<$Res> { factory _$$DynamicErrorMessageImplCopyWith( _$DynamicErrorMessageImpl value, $Res Function(_$DynamicErrorMessageImpl) then, ) = __$$DynamicErrorMessageImplCopyWithImpl<$Res>; @useResult $Res call({String erroMessage}); } /// @nodoc class __$$DynamicErrorMessageImplCopyWithImpl<$Res> extends _$ProductFailureCopyWithImpl<$Res, _$DynamicErrorMessageImpl> implements _$$DynamicErrorMessageImplCopyWith<$Res> { __$$DynamicErrorMessageImplCopyWithImpl( _$DynamicErrorMessageImpl _value, $Res Function(_$DynamicErrorMessageImpl) _then, ) : super(_value, _then); /// Create a copy of ProductFailure /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({Object? erroMessage = null}) { return _then( _$DynamicErrorMessageImpl( null == erroMessage ? _value.erroMessage : erroMessage // ignore: cast_nullable_to_non_nullable as String, ), ); } } /// @nodoc class _$DynamicErrorMessageImpl with DiagnosticableTreeMixin implements _DynamicErrorMessage { const _$DynamicErrorMessageImpl(this.erroMessage); @override final String erroMessage; @override String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) { return 'ProductFailure.dynamicErrorMessage(erroMessage: $erroMessage)'; } @override void debugFillProperties(DiagnosticPropertiesBuilder properties) { super.debugFillProperties(properties); properties ..add(DiagnosticsProperty('type', 'ProductFailure.dynamicErrorMessage')) ..add(DiagnosticsProperty('erroMessage', erroMessage)); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$DynamicErrorMessageImpl && (identical(other.erroMessage, erroMessage) || other.erroMessage == erroMessage)); } @override int get hashCode => Object.hash(runtimeType, erroMessage); /// Create a copy of ProductFailure /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @override @pragma('vm:prefer-inline') _$$DynamicErrorMessageImplCopyWith<_$DynamicErrorMessageImpl> get copyWith => __$$DynamicErrorMessageImplCopyWithImpl<_$DynamicErrorMessageImpl>( this, _$identity, ); @override @optionalTypeArgs TResult when({ required TResult Function(ApiFailure failure) serverError, required TResult Function() unexpectedError, required TResult Function() empty, required TResult Function(String erroMessage) localStorageError, required TResult Function(String erroMessage) dynamicErrorMessage, }) { return dynamicErrorMessage(erroMessage); } @override @optionalTypeArgs TResult? whenOrNull({ TResult? Function(ApiFailure failure)? serverError, TResult? Function()? unexpectedError, TResult? Function()? empty, TResult? Function(String erroMessage)? localStorageError, TResult? Function(String erroMessage)? dynamicErrorMessage, }) { return dynamicErrorMessage?.call(erroMessage); } @override @optionalTypeArgs TResult maybeWhen({ TResult Function(ApiFailure failure)? serverError, TResult Function()? unexpectedError, TResult Function()? empty, TResult Function(String erroMessage)? localStorageError, TResult Function(String erroMessage)? dynamicErrorMessage, required TResult orElse(), }) { if (dynamicErrorMessage != null) { return dynamicErrorMessage(erroMessage); } return orElse(); } @override @optionalTypeArgs TResult map({ required TResult Function(_ServerError value) serverError, required TResult Function(_UnexpectedError value) unexpectedError, required TResult Function(_Empty value) empty, required TResult Function(_LocalStorageError value) localStorageError, required TResult Function(_DynamicErrorMessage value) dynamicErrorMessage, }) { return dynamicErrorMessage(this); } @override @optionalTypeArgs TResult? mapOrNull({ TResult? Function(_ServerError value)? serverError, TResult? Function(_UnexpectedError value)? unexpectedError, TResult? Function(_Empty value)? empty, TResult? Function(_LocalStorageError value)? localStorageError, TResult? Function(_DynamicErrorMessage value)? dynamicErrorMessage, }) { return dynamicErrorMessage?.call(this); } @override @optionalTypeArgs TResult maybeMap({ TResult Function(_ServerError value)? serverError, TResult Function(_UnexpectedError value)? unexpectedError, TResult Function(_Empty value)? empty, TResult Function(_LocalStorageError value)? localStorageError, TResult Function(_DynamicErrorMessage value)? dynamicErrorMessage, required TResult orElse(), }) { if (dynamicErrorMessage != null) { return dynamicErrorMessage(this); } return orElse(); } } abstract class _DynamicErrorMessage implements ProductFailure { const factory _DynamicErrorMessage(final String erroMessage) = _$DynamicErrorMessageImpl; String get erroMessage; /// Create a copy of ProductFailure /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) _$$DynamicErrorMessageImplCopyWith<_$DynamicErrorMessageImpl> get copyWith => throw _privateConstructorUsedError; }