Line data Source code
1 : class AppInfo { 2 : /// The name of the app or project for which the Widgetbook is created. 3 : /// This name will be displayed in the upper left corner. 4 : final String name; 5 : 6 1 : AppInfo({ 7 : required this.name, 8 : }); 9 : }