fix: Fixed trailing comma

This commit is contained in:
Deven Joshi
2021-06-07 19:29:00 +05:30
parent 244c77cbc7
commit 7e463a9663
+3 -1
View File
@@ -1351,7 +1351,9 @@ class StreamChatClient {
/// Use 'set' in map to set values
/// User 'unset' in map to unset values
Future<UpdateMessageResponse> partiallyUpdateMessage(
String id, Map data) async {
String id,
Map data,
) async {
final response = await put(
'/messages/$id',
data: data,