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