chore:cleanup-packages breaking: remove isar (#474)

Co-authored-by: PartyDonut <PartyDonut@users.noreply.github.com>
This commit is contained in:
PartyDonut 2025-08-24 21:16:51 +02:00 committed by GitHub
parent ab6182f69d
commit 6357b9843c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
81 changed files with 31400 additions and 25673 deletions

View file

@ -91,12 +91,13 @@ mixin UserDataMappable {
}
UserDataCopyWith<UserData, UserData, UserData> get copyWith =>
_UserDataCopyWithImpl(this as UserData, $identity, $identity);
_UserDataCopyWithImpl<UserData, UserData>(
this as UserData, $identity, $identity);
}
extension UserDataValueCopy<$R, $Out> on ObjectCopyWith<$R, UserData, $Out> {
UserDataCopyWith<$R, UserData, $Out> get $asUserData =>
$base.as((v, t, t2) => _UserDataCopyWithImpl(v, t, t2));
$base.as((v, t, t2) => _UserDataCopyWithImpl<$R, $Out>(v, t, t2));
}
abstract class UserDataCopyWith<$R, $In extends UserData, $Out>
@ -154,5 +155,5 @@ class _UserDataCopyWithImpl<$R, $Out>
@override
UserDataCopyWith<$R2, UserData, $Out2> $chain<$R2, $Out2>(
Then<$Out2, $R2> t) =>
_UserDataCopyWithImpl($value, $cast, t);
_UserDataCopyWithImpl<$R2, $Out2>($value, $cast, t);
}