SjMessageSendsDto constructor

const SjMessageSendsDto({
  1. int? chatId,
  2. required String? text,
  3. List<String>? images,
  4. int? replyId,
  5. List<double>? geopoint,
  6. Map<String, dynamic>? payload,
})

Данные cообщения отправляемые к api urls.apiMsgSend.

Implementation

const SjMessageSendsDto({
  this.chatId,
  required this.text,
  this.images,
  this.replyId,
  this.geopoint,
  this.payload,
});