Line data Source code
1 : import 'package:mvvm_builder/mvvm_builder.dart'; 2 : 3 : class FontFamilyPickerModel extends MVVMModel { 4 : List<String> fonts; 5 : List<String> originalFonts; 6 : bool isLoading; 7 : String selectedFontFamilyKey; 8 : 9 1 : FontFamilyPickerModel({ 10 : this.fonts, 11 : this.originalFonts, 12 : this.isLoading, 13 : this.selectedFontFamilyKey, 14 : }); 15 : }