// GENERATED CODE - DO NOT MODIFY BY HAND // coverage:ignore-file // 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 'organization.dart'; // ************************************************************************** // FreezedGenerator // ************************************************************************** // dart format off T _$identity(T value) => value; /// @nodoc mixin _$Organization { String? get name;@JsonKey(name: 'company_id') String? get companyId; OrganizationAddress? get address; /// Create a copy of Organization /// with the given fields replaced by the non-null parameter values. @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') $OrganizationCopyWith get copyWith => _$OrganizationCopyWithImpl(this as Organization, _$identity); /// Serializes this Organization to a JSON map. Map toJson(); @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is Organization&&(identical(other.name, name) || other.name == name)&&(identical(other.companyId, companyId) || other.companyId == companyId)&&(identical(other.address, address) || other.address == address)); } @JsonKey(includeFromJson: false, includeToJson: false) @override int get hashCode => Object.hash(runtimeType,name,companyId,address); @override String toString() { return 'Organization(name: $name, companyId: $companyId, address: $address)'; } } /// @nodoc abstract mixin class $OrganizationCopyWith<$Res> { factory $OrganizationCopyWith(Organization value, $Res Function(Organization) _then) = _$OrganizationCopyWithImpl; @useResult $Res call({ String? name,@JsonKey(name: 'company_id') String? companyId, OrganizationAddress? address }); $OrganizationAddressCopyWith<$Res>? get address; } /// @nodoc class _$OrganizationCopyWithImpl<$Res> implements $OrganizationCopyWith<$Res> { _$OrganizationCopyWithImpl(this._self, this._then); final Organization _self; final $Res Function(Organization) _then; /// Create a copy of Organization /// with the given fields replaced by the non-null parameter values. @pragma('vm:prefer-inline') @override $Res call({Object? name = freezed,Object? companyId = freezed,Object? address = freezed,}) { return _then(_self.copyWith( name: freezed == name ? _self.name : name // ignore: cast_nullable_to_non_nullable as String?,companyId: freezed == companyId ? _self.companyId : companyId // ignore: cast_nullable_to_non_nullable as String?,address: freezed == address ? _self.address : address // ignore: cast_nullable_to_non_nullable as OrganizationAddress?, )); } /// Create a copy of Organization /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $OrganizationAddressCopyWith<$Res>? get address { if (_self.address == null) { return null; } return $OrganizationAddressCopyWith<$Res>(_self.address!, (value) { return _then(_self.copyWith(address: value)); }); } } /// Adds pattern-matching-related methods to [Organization]. extension OrganizationPatterns on Organization { /// A variant of `map` that fallback to returning `orElse`. /// /// It is equivalent to doing: /// ```dart /// switch (sealedClass) { /// case final Subclass value: /// return ...; /// case _: /// return orElse(); /// } /// ``` @optionalTypeArgs TResult maybeMap(TResult Function( _Organization value)? $default,{required TResult orElse(),}){ final _that = this; switch (_that) { case _Organization() when $default != null: return $default(_that);case _: return orElse(); } } /// A `switch`-like method, using callbacks. /// /// Callbacks receives the raw object, upcasted. /// It is equivalent to doing: /// ```dart /// switch (sealedClass) { /// case final Subclass value: /// return ...; /// case final Subclass2 value: /// return ...; /// } /// ``` @optionalTypeArgs TResult map(TResult Function( _Organization value) $default,){ final _that = this; switch (_that) { case _Organization(): return $default(_that);case _: throw StateError('Unexpected subclass'); } } /// A variant of `map` that fallback to returning `null`. /// /// It is equivalent to doing: /// ```dart /// switch (sealedClass) { /// case final Subclass value: /// return ...; /// case _: /// return null; /// } /// ``` @optionalTypeArgs TResult? mapOrNull(TResult? Function( _Organization value)? $default,){ final _that = this; switch (_that) { case _Organization() when $default != null: return $default(_that);case _: return null; } } /// A variant of `when` that fallback to an `orElse` callback. /// /// It is equivalent to doing: /// ```dart /// switch (sealedClass) { /// case Subclass(:final field): /// return ...; /// case _: /// return orElse(); /// } /// ``` @optionalTypeArgs TResult maybeWhen(TResult Function( String? name, @JsonKey(name: 'company_id') String? companyId, OrganizationAddress? address)? $default,{required TResult orElse(),}) {final _that = this; switch (_that) { case _Organization() when $default != null: return $default(_that.name,_that.companyId,_that.address);case _: return orElse(); } } /// A `switch`-like method, using callbacks. /// /// As opposed to `map`, this offers destructuring. /// It is equivalent to doing: /// ```dart /// switch (sealedClass) { /// case Subclass(:final field): /// return ...; /// case Subclass2(:final field2): /// return ...; /// } /// ``` @optionalTypeArgs TResult when(TResult Function( String? name, @JsonKey(name: 'company_id') String? companyId, OrganizationAddress? address) $default,) {final _that = this; switch (_that) { case _Organization(): return $default(_that.name,_that.companyId,_that.address);case _: throw StateError('Unexpected subclass'); } } /// A variant of `when` that fallback to returning `null` /// /// It is equivalent to doing: /// ```dart /// switch (sealedClass) { /// case Subclass(:final field): /// return ...; /// case _: /// return null; /// } /// ``` @optionalTypeArgs TResult? whenOrNull(TResult? Function( String? name, @JsonKey(name: 'company_id') String? companyId, OrganizationAddress? address)? $default,) {final _that = this; switch (_that) { case _Organization() when $default != null: return $default(_that.name,_that.companyId,_that.address);case _: return null; } } } /// @nodoc @JsonSerializable() class _Organization implements Organization { const _Organization({required this.name, @JsonKey(name: 'company_id') required this.companyId, required this.address}); factory _Organization.fromJson(Map json) => _$OrganizationFromJson(json); @override final String? name; @override@JsonKey(name: 'company_id') final String? companyId; @override final OrganizationAddress? address; /// Create a copy of Organization /// with the given fields replaced by the non-null parameter values. @override @JsonKey(includeFromJson: false, includeToJson: false) @pragma('vm:prefer-inline') _$OrganizationCopyWith<_Organization> get copyWith => __$OrganizationCopyWithImpl<_Organization>(this, _$identity); @override Map toJson() { return _$OrganizationToJson(this, ); } @override bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType&&other is _Organization&&(identical(other.name, name) || other.name == name)&&(identical(other.companyId, companyId) || other.companyId == companyId)&&(identical(other.address, address) || other.address == address)); } @JsonKey(includeFromJson: false, includeToJson: false) @override int get hashCode => Object.hash(runtimeType,name,companyId,address); @override String toString() { return 'Organization(name: $name, companyId: $companyId, address: $address)'; } } /// @nodoc abstract mixin class _$OrganizationCopyWith<$Res> implements $OrganizationCopyWith<$Res> { factory _$OrganizationCopyWith(_Organization value, $Res Function(_Organization) _then) = __$OrganizationCopyWithImpl; @override @useResult $Res call({ String? name,@JsonKey(name: 'company_id') String? companyId, OrganizationAddress? address }); @override $OrganizationAddressCopyWith<$Res>? get address; } /// @nodoc class __$OrganizationCopyWithImpl<$Res> implements _$OrganizationCopyWith<$Res> { __$OrganizationCopyWithImpl(this._self, this._then); final _Organization _self; final $Res Function(_Organization) _then; /// Create a copy of Organization /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $Res call({Object? name = freezed,Object? companyId = freezed,Object? address = freezed,}) { return _then(_Organization( name: freezed == name ? _self.name : name // ignore: cast_nullable_to_non_nullable as String?,companyId: freezed == companyId ? _self.companyId : companyId // ignore: cast_nullable_to_non_nullable as String?,address: freezed == address ? _self.address : address // ignore: cast_nullable_to_non_nullable as OrganizationAddress?, )); } /// Create a copy of Organization /// with the given fields replaced by the non-null parameter values. @override @pragma('vm:prefer-inline') $OrganizationAddressCopyWith<$Res>? get address { if (_self.address == null) { return null; } return $OrganizationAddressCopyWith<$Res>(_self.address!, (value) { return _then(_self.copyWith(address: value)); }); } } // dart format on