Line data Source code
1 : import 'package:mvvm_builder/mvvm_builder.dart'; 2 : 3 : class UserFullScreenHelperModel extends MVVMModel { 4 : double helperOpacity; 5 : bool mediaAnimation; 6 : bool titleAnimation; 7 : bool feedbackAnimation; 8 : bool isReversedAnimations; 9 : 10 1 : UserFullScreenHelperModel({ 11 : this.helperOpacity, 12 : this.mediaAnimation, 13 : this.titleAnimation, 14 : this.feedbackAnimation, 15 : this.isReversedAnimations, 16 : }); 17 : }