Gabriel McReynolds
Gabriel McReynolds
> Freezed classes do not support generated types as inputs. You'll have to wait for metaprogramming for this. I'm a bit confused about this statement. If that is true then...
@victor-teles Thanks for the quick response. Do you have a timeframe for the release?
@needim Thanks for this comprehensive guide on migrating. Has anyone had any issues with generating migrations after following these steps. When I run the CLI commands given I get the...
I am getting this same problem, but in Android Studio. I feel like this is a major problem as it is making me use google-services 4.2.0
This was user error. Instead of setting the values in the view model's constructor I'm calling an `initFormValues` inside the `onViewModelReady` function and setting the form values there. It might...
I still can't seem to get forms with initial values working. I'm calling my initValues in my form model like the following: ```dart @override void onViewModelReady(SetTourInfoModel viewModel) { syncFormWithViewModel(viewModel); viewModel.initFormValues();...