notification_settings property

ChatNotificationSettings get notification_settings

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

ChatNotificationSettings get notification_settings {
  try {
    if (rawData["notification_settings"] is Map == false) {
      return ChatNotificationSettings({});
    }
    return ChatNotificationSettings(rawData["notification_settings"] as Map);
  } catch (e) {
    return ChatNotificationSettings({});
  }
}
set notification_settings (ChatNotificationSettings value)

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

set notification_settings(ChatNotificationSettings value) {
  rawData["notification_settings"] = value.toJson();
}