update_scope_notification_settings property

UpdateScopeNotificationSettings get update_scope_notification_settings

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

Implementation

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

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

Implementation

set update_scope_notification_settings(UpdateScopeNotificationSettings value) {
  rawData["update_scope_notification_settings"] = value.toJson();
}