File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ Future<SendMessageResult> sendMessage(
193
193
'to' : destination.userIds,
194
194
}}),
195
195
'content' : RawParameter (content),
196
- if (queueId != null ) 'queue_id' : queueId, // TODO should this use RawParameter?
196
+ if (queueId != null ) 'queue_id' : RawParameter ( queueId),
197
197
if (localId != null ) 'local_id' : localId, // TODO should this use RawParameter?
198
198
if (readBySender != null ) 'read_by_sender' : readBySender,
199
199
},
Original file line number Diff line number Diff line change @@ -362,7 +362,7 @@ void main() {
362
362
'to' : streamId.toString (),
363
363
'topic' : topic,
364
364
'content' : content,
365
- 'queue_id' : '" abc:123" ' ,
365
+ 'queue_id' : 'abc:123' ,
366
366
'local_id' : '"456"' ,
367
367
'read_by_sender' : 'true' ,
368
368
});
You can’t perform that action at this time.
0 commit comments