I am using the CSOM for PowerShell to get all the default forms(new/display/edit) used by the list in SharePoint online site. Below is the code snippet for the same.
$NewFormUrl = $List.DefaultNewFormUrl
$DisplayFormUrl = $List.DefaultDisplayFormUrl
$EditFormUrl = $List.DefaultEditFormUrl
These values are returned as blank for any lists inside the site. I am able to fetch other list properties except these three property values.
How can I get the default forms?

