// 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 part of 'album_model.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#custom-getters-and-methods'); AlbumModel _$AlbumModelFromJson(Map json) { return _AlbumModel.fromJson(json); } /// @nodoc mixin _$AlbumModel { int get userId => throw _privateConstructorUsedError; int get id => throw _privateConstructorUsedError; String get title => throw _privateConstructorUsedError; Map toJson() => throw _privateConstructorUsedError; @JsonKey(ignore: true) $AlbumModelCopyWith get copyWith => throw _privateConstructorUsedError; } /// @nodoc abstract class $AlbumModelCopyWith<$Res> { factory $AlbumModelCopyWith( AlbumModel value, $Res Function(AlbumModel) then) = _$AlbumModelCopyWithImpl<$Res, AlbumModel>; @useResult $Res call({int userId, int id, String title}); } /// @nodoc class _$AlbumModelCopyWithImpl<$Res, $Val extends AlbumModel> implements $AlbumModelCopyWith<$Res> { _$AlbumModelCopyWithImpl(this._value, this._then); // ignore: unused_field final $Val _value; // ignore: unused_field final $Res Function($Val) _then; @pragma('vm:prefer-inline') @override $Res call({ Object? userId = null, Object? id = null, Object? title = null, }) { return _then(_value.copyWith( userId: null == userId ? _value.userId : userId // ignore: cast_nullable_to_non_nullable as int, id: null == id ? _value.id : id // ignore: cast_nullable_to_non_nullable as int, title: null == title ? _value.title : title // ignore: cast_nullable_to_non_nullable as String, ) as $Val); } } /// @nodoc abstract class _$$_AlbumModelCopyWith<$Res> implements $AlbumModelCopyWith<$Res> { factory _$$_AlbumModelCopyWith( _$_AlbumModel value, $Res Function(_$_AlbumModel) then) = __$$_AlbumModelCopyWithImpl<$Res>; @override @useResult $Res call({int userId, int id, String title}); } /// @nodoc class __$$_AlbumModelCopyWithImpl<$Res> extends _$AlbumModelCopyWithImpl<$Res, _$_AlbumModel> implements _$$_AlbumModelCopyWith<$Res> { __$$_AlbumModelCopyWithImpl( _$_AlbumModel _value, $Res Function(_$_AlbumModel) _then) : super(_value, _then); @pragma('vm:prefer-inline') @override $Res call({ Object? userId = null, Object? id = null, Object? title = null, }) { return _then(_$_AlbumModel( userId: null == userId ? _value.userId : userId // ignore: cast_nullable_to_non_nullable as int, id: null == id ? _value.id : id // ignore: cast_nullable_to_non_nullable as int, title: null == title ? _value.title : title // ignore: cast_nullable_to_non_nullable as String, )); } } /// @nodoc @JsonSerializable() class _$_AlbumModel implements _AlbumModel { const _$_AlbumModel( {required this.userId, required this.id, required this.title}); factory _$_AlbumModel.fromJson(Map json) => _$$_AlbumModelFromJson(json); @override final int userId; @override final int id; @override final String title; @override String toString() { return 'AlbumModel(userId: $userId, id: $id, title: $title)'; } @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') _$$_AlbumModelCopyWith<_$_AlbumModel> get copyWith => __$$_AlbumModelCopyWithImpl<_$_AlbumModel>(this, _$identity); @override Map toJson() { return _$$_AlbumModelToJson( this, ); } } abstract class _AlbumModel implements AlbumModel { const factory _AlbumModel( {required final int userId, required final int id, required final String title}) = _$_AlbumModel; factory _AlbumModel.fromJson(Map json) = _$_AlbumModel.fromJson; @override int get userId; @override int get id; @override String get title; @override @JsonKey(ignore: true) _$$_AlbumModelCopyWith<_$_AlbumModel> get copyWith => throw _privateConstructorUsedError; }