update_service_notification property

UpdateServiceNotification get update_service_notification

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

Implementation

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

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

Implementation

set update_service_notification(UpdateServiceNotification value) {
  rawData["update_service_notification"] = value.toJson();
}