Line data Source code
1 : import 'package:flutter/material.dart'; 2 : import 'package:mvvm_builder/mvvm_builder.dart'; 3 : 4 : class FontWeightPickerModel extends MVVMModel { 5 : Map<String, FontWeight> fontWeights; 6 : String selectedFontWeightKey; 7 : 8 1 : FontWeightPickerModel({ 9 : this.fontWeights, 10 : this.selectedFontWeightKey, 11 : }); 12 : }