Line data Source code
1 : import 'package:mvvm_builder/mvvm_builder.dart'; 2 : 3 : class UserUpdateHelperModel extends MVVMModel { 4 : double helperOpacity; 5 : String appVersion; 6 : bool changelogCascadeAnimation; 7 : bool progressBarAnimation; 8 : bool titleAnimation; 9 : bool imageAnimation; 10 : bool showThanksButton; 11 : bool isReversedAnimations; 12 : 13 1 : UserUpdateHelperModel({ 14 : this.helperOpacity, 15 : this.appVersion, 16 : this.changelogCascadeAnimation, 17 : this.progressBarAnimation, 18 : this.titleAnimation, 19 : this.imageAnimation, 20 : this.showThanksButton, 21 : this.isReversedAnimations, 22 : }); 23 : }