mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 11:18:41 +00:00
fix type issue
This commit is contained in:
parent
869296074c
commit
aa7877dc64
1 changed files with 1 additions and 1 deletions
|
|
@ -243,7 +243,7 @@ class AckContent extends MessageContent {
|
||||||
|
|
||||||
static AckContent fromJson(Map json) {
|
static AckContent fromJson(Map json) {
|
||||||
return AckContent(
|
return AckContent(
|
||||||
messageIdToAck: json['messageIdToAck'] as int,
|
messageIdToAck: json['messageIdToAck'] as int?,
|
||||||
retransIdToAck: json['retransIdToAck'] as int,
|
retransIdToAck: json['retransIdToAck'] as int,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue