We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The fromJson methods in my models have lots of redundant checks like this:
if (json['stop_distance'] == null) { stopDistance = null; } else { stopDistance = json['stop_distance']; }
Remove redundant check and just assign:
stopDistance = json['stop_distance'];
I'll start a PR now, should just be a small change to class.mustache I believe.
class.mustache
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
The fromJson methods in my models have lots of redundant checks like this:
Describe the solution you'd like
Remove redundant check and just assign:
Describe alternatives you've considered
I'll start a PR now, should just be a small change to
class.mustache
I believe.The text was updated successfully, but these errors were encountered: