sendChatAttachment method

void sendChatAttachment(
  1. ChatViewAttachmentData attachment
)

Sends attachment to the chat. Parameter attachment attachment to be send

Implementation

void sendChatAttachment(ChatViewAttachmentData attachment) async {
  final Map<String, dynamic> args = attachment.toJson();
  await _channel.invokeMethod('sendChatMessage', args);
}