Updated the `Action` property in the `InvokeRecActionCommand` class to be non-nullable by initializing it with a default value (`= null!;`). This change ensures better null safety and prevents potential null reference issues. The `= null!;` syntax suppresses compiler warnings while guaranteeing the property will be properly initialized before use.
ReC
Description
Languages
C#
100%