UPDATE: I restored to a version of my app just prior to the last successful web deployment (July 9) - and I still get the same error. This is very frustrating 😞
I can run my project in Test mode, however when I try to execute in Run Mode or publish to Web I get the following error:
Target dart2js failed: ProcessException: Process exited abnormally with exit code 1:
lib/flutter_flow/nav/nav.dart:187:29:
Error: Member not found: 'Action'.
ParamType.Action,
^^^^^^
lib/flutter_flow/nav/nav.dart:199:29:
Error: Member not found: 'Action'.
ParamType.Action,
^^^^^^
Error: Compilation failed.
#0 RunResult.throwException (package:flutter_tools/src/base/process.dart:125:5)
Error: Failed to compile application for the Web.
I think (from my limited knowledge and the error message) this may be due to a component that is being used in a page with an Action parameter defined, however there is no parameter of type Action defined for the component?
(I have gone through all my pages and uses of components to try and see if one is being called using a non-existent Action parameter but with no success.)
As there is no specific page or component referenced in the error message, has anyone encountered this issue before?
Iss there a quick way to resolve this or at least identify which component/parameter is causing the error?