You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It doesn't appear possible to do this with code_builder and the functionality within Flutter to do this is relatively new.
In terms of an example:
//...returnEnumValue((builder) {
b.name ='example';
b.arguments.add(literal("Some argument"));
b.arguments.add(literal("Some other argument"), name:"test");
// or alternatively, b.namedArguments could be added to EnumValueBuilder.
});
//...
Where this might result in the following:
// ...example("Some argument", test:"Some other argument"),
// ...