update_notification property

UpdateNotification get update_notification

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

Implementation

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

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

Implementation

set update_notification(UpdateNotification value) {
  rawData["update_notification"] = value.toJson();
}