Line data Source code
1 : import 'package:flutter/widgets.dart'; 2 : import 'package:mvvm_builder/mvvm_builder.dart'; 3 : 4 : class FontEditorDialogModel extends MVVMModel { 5 : FontKeys fontKeys; 6 : TextStyle modifiedTextStyle; 7 : 8 2 : FontEditorDialogModel({ 9 : this.fontKeys, 10 : this.modifiedTextStyle, 11 : }); 12 : } 13 : 14 : class FontKeys { 15 : String fontFamilyNameKey; 16 : String fontWeightNameKey; 17 : 18 2 : FontKeys({ 19 : this.fontFamilyNameKey, 20 : this.fontWeightNameKey, 21 : }); 22 : }