starMessage static method
Helper to create a star message operation.
Implementation
static OutboundOperation starMessage(String roomId, String messageId) {
return OutboundOperation(
id: DateTime.now().millisecondsSinceEpoch.toString(),
type: OutboundOperationType.starMessage,
data: jsonEncode({'roomId': roomId, 'messageId': messageId}),
);
}