JMMessageSendOptions.fromJson constructor

JMMessageSendOptions.fromJson(
  1. Map json
)

Implementation

JMMessageSendOptions.fromJson(Map<dynamic, dynamic> json)
    : isShowNotification = json['isShowNotification'],
      isRetainOffline = json['isRetainOffline'],
      isCustomNotificationEnabled = json['isCustomNotificationEnabled'],
      notificationTitle = json['notificationTitle'],
      notificationText = json['notificationText'],
      needReadReceipt = json['needReadReceipt'];