sendImageMessage method Null safety

Future<VoidResult> sendImageMessage(
  1. String messageUuid,
  2. String imagePath,
  3. List<String>? userUuids
)

Send image messages

  • messageUuid message identifier, used to track the progress of attachment upload. You can generatre identifiers using UUID.randomUUID().
  • imagePath path of an image file
  • userUuids list of user IDs. If empty, all members will receive messages.

Implementation

Future<VoidResult> sendImageMessage(
  String messageUuid,
  String imagePath,
  List<String>? userUuids,
);