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 {
|
try {
|
||||||
return Profile.fromJson(json);
|
return Profile.fromJson(json);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return _Profile(parseError: error.toString());
|
return Profile(parseError: error.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,8 @@ class const Mentions({
|
||||||
_$MentionsFromJson(json);
|
_$MentionsFromJson(json);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Freezed(toJson: false)
|
@Freezed(toJson: false, fromJson: false)
|
||||||
|
@JsonSerializable(createToJson: false)
|
||||||
class const Relation({
|
class const Relation({
|
||||||
required final String eventId,
|
required final String eventId,
|
||||||
required final RelationType relationType,
|
required final RelationType relationType,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue