Hi, Iām encountering the following error in my FlutterFlow project:
In my project, I have two enums:
A primary enum that I use in FFAppState.
Another enum from a third-party library.
It seems that both files define the FFEnumExtensions
extension with the serialize()
method, causing a conflict.
This error
A member named 'serialize' is defined in extension 'FFEnumExtensions' and extension 'FFEnumExtensions', and none are more specific.
How can I resolve this conflict in FlutterFlow to avoid ambiguity?