sendFileMessage method Null safety

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

Send file messages

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

Implementation

Future<VoidResult> sendFileMessage(
  String messageUuid,
  String filePath,
  List<String>? userUuids,
);