extentreports-csharp
extentreports-csharp copied to clipboard
Error "The type 'System.void' may not be used as a type argument" Extent Report for mac

I am getting the above error after the "extent.Flush();" is hit. is there a way to fix this error in order to get the report to generate? any help would be nice!
The Code that it's hitting is here:
private static void ThrowIfTypeNeverValidGenericArgument(RuntimeType type) { if (type.IsPointer || type.IsByRef || type == typeof(void)) throw new ArgumentException( Environment.GetResourceString("Argument_NeverValidGenericArgument", type.ToString())); }