// 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 'note.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', ); Note _$NoteFromJson(Map json) { return _Note.fromJson(json); } /// @nodoc mixin _$Note { String get id => throw _privateConstructorUsedError; String get title => throw _privateConstructorUsedError; List get strokes => throw _privateConstructorUsedError; DateTime get createdAt => throw _privateConstructorUsedError; DateTime get updatedAt => throw _privateConstructorUsedError; List get tags => throw _privateConstructorUsedError; /// Serializes this Note to a JSON map. Map toJson() => throw _privateConstructorUsedError; /// Create a copy of Note /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) $NoteCopyWith get copyWith => throw _privateConstructorUsedError; } /// @nodoc abstract class $NoteCopyWith<$Res> { factory $NoteCopyWith(Note value, $Res Function(Note) then) = _$NoteCopyWithImpl<$Res, Note>; @useResult $Res call({ String id, String title, List strokes, DateTime createdAt, DateTime updatedAt, List tags, }); } /// @nodoc class _$NoteCopyWithImpl<$Res, $Val extends Note> implements $NoteCopyWith<$Res> { _$NoteCopyWithImpl(this._value, this._then); // ignore: unused_field final $Val _value; // ignore: unused_field final $Res Function($Val) _then; /// Create a copy of Note /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? id = null, Object? title = null, Object? strokes = null, Object? createdAt = null, Object? updatedAt = null, Object? tags = null, }) { return _then( _value.copyWith( id: null == id ? _value.id : id // ignore: cast_nullable_to_non_nullable as String, title: null == title ? _value.title : title // ignore: cast_nullable_to_non_nullable as String, strokes: null == strokes ? _value.strokes : strokes // ignore: cast_nullable_to_non_nullable as List, createdAt: null == createdAt ? _value.createdAt : createdAt // ignore: cast_nullable_to_non_nullable as DateTime, updatedAt: null == updatedAt ? _value.updatedAt : updatedAt // ignore: cast_nullable_to_non_nullable as DateTime, tags: null == tags ? _value.tags : tags // ignore: cast_nullable_to_non_nullable as List, ) as $Val, ); } } /// @nodoc abstract class _$$NoteImplCopyWith<$Res> implements $NoteCopyWith<$Res> { factory _$$NoteImplCopyWith( _$NoteImpl value, $Res Function(_$NoteImpl) then, ) = __$$NoteImplCopyWithImpl<$Res>; @override @useResult $Res call({ String id, String title, List strokes, DateTime createdAt, DateTime updatedAt, List tags, }); } /// @nodoc class __$$NoteImplCopyWithImpl<$Res> extends _$NoteCopyWithImpl<$Res, _$NoteImpl> implements _$$NoteImplCopyWith<$Res> { __$$NoteImplCopyWithImpl(_$NoteImpl _value, $Res Function(_$NoteImpl) _then) : super(_value, _then); /// Create a copy of Note /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({ Object? id = null, Object? title = null, Object? strokes = null, Object? createdAt = null, Object? updatedAt = null, Object? tags = null, }) { return _then( _$NoteImpl( id: null == id ? _value.id : id // ignore: cast_nullable_to_non_nullable as String, title: null == title ? _value.title : title // ignore: cast_nullable_to_non_nullable as String, strokes: null == strokes ? _value._strokes : strokes // ignore: cast_nullable_to_non_nullable as List, createdAt: null == createdAt ? _value.createdAt : createdAt // ignore: cast_nullable_to_non_nullable as DateTime, updatedAt: null == updatedAt ? _value.updatedAt : updatedAt // ignore: cast_nullable_to_non_nullable as DateTime, tags: null == tags ? _value._tags : tags // ignore: cast_nullable_to_non_nullable as List, ), ); } } /// @nodoc @JsonSerializable() class _$NoteImpl implements _Note { const _$NoteImpl({ required this.id, this.title = 'Untitled', final List strokes = const [], required this.createdAt, required this.updatedAt, final List tags = const [], }) : _strokes = strokes, _tags = tags; factory _$NoteImpl.fromJson(Map json) => _$$NoteImplFromJson(json); @override final String id; @override @JsonKey() final String title; final List _strokes; @override @JsonKey() List get strokes { if (_strokes is EqualUnmodifiableListView) return _strokes; // ignore: implicit_dynamic_type return EqualUnmodifiableListView(_strokes); } @override final DateTime createdAt; @override final DateTime updatedAt; final List _tags; @override @JsonKey() List get tags { if (_tags is EqualUnmodifiableListView) return _tags; // ignore: implicit_dynamic_type return EqualUnmodifiableListView(_tags); } @override String toString() { return 'Note(id: $id, title: $title, strokes: $strokes, createdAt: $createdAt, updatedAt: $updatedAt, tags: $tags)'; } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$NoteImpl && (identical(other.id, id) || other.id == id) && (identical(other.title, title) || other.title == title) && const DeepCollectionEquality().equals(other._strokes, _strokes) && (identical(other.createdAt, createdAt) || other.createdAt == createdAt) && (identical(other.updatedAt, updatedAt) || other.updatedAt == updatedAt) && const DeepCollectionEquality().equals(other._tags, _tags)); } @JsonKey(includeFromJson: false, includeToJson: false) @override int get hashCode => Object.hash( runtimeType, id, title, const DeepCollectionEquality().hash(_strokes), createdAt, updatedAt, const DeepCollectionEquality().hash(_tags), ); /// Create a copy of Note /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @override @pragma('vm:prefer-inline') _$$NoteImplCopyWith<_$NoteImpl> get copyWith => __$$NoteImplCopyWithImpl<_$NoteImpl>(this, _$identity); @override Map toJson() { return _$$NoteImplToJson(this); } } abstract class _Note implements Note { const factory _Note({ required final String id, final String title, final List strokes, required final DateTime createdAt, required final DateTime updatedAt, final List tags, }) = _$NoteImpl; factory _Note.fromJson(Map json) = _$NoteImpl.fromJson; @override String get id; @override String get title; @override List get strokes; @override DateTime get createdAt; @override DateTime get updatedAt; @override List get tags; /// Create a copy of Note /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) _$$NoteImplCopyWith<_$NoteImpl> get copyWith => throw _privateConstructorUsedError; }