fixup errors caused by bump
This commit is contained in:
parent
efe9262a97
commit
0636366359
2 changed files with 3 additions and 2 deletions
|
|
@ -57,7 +57,7 @@ class const Profile({
|
|||
try {
|
||||
return Profile.fromJson(json);
|
||||
} catch (error) {
|
||||
return _Profile(parseError: error.toString());
|
||||
return Profile(parseError: error.toString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,8 @@ class const Mentions({
|
|||
_$MentionsFromJson(json);
|
||||
}
|
||||
|
||||
@Freezed(toJson: false)
|
||||
@Freezed(toJson: false, fromJson: false)
|
||||
@JsonSerializable(createToJson: false)
|
||||
class const Relation({
|
||||
required final String eventId,
|
||||
required final RelationType relationType,
|
||||
|
|
|
|||
Loading…
Reference in a new issue