sendImageMessage method Null safety
Send image messages
messageUuid
message identifier, used to track the progress of attachment upload. You can generatre identifiers usingUUID.randomUUID()
.imagePath
path of an image fileuserUuids
list of user IDs. If empty, all members will receive messages.
Implementation
Future<VoidResult> sendImageMessage(
String messageUuid,
String imagePath,
List<String>? userUuids,
);