mirror of
https://github.com/flutter/samples.git
synced 2025-11-09 14:28:51 +00:00
web/charts: Migrate to null safety (#921)
This commit is contained in:
@@ -22,8 +22,12 @@ class AppConfig {
|
||||
final ThemeData theme;
|
||||
final bool showPerformanceOverlay;
|
||||
|
||||
AppConfig(
|
||||
{this.appName, this.appLink, this.theme, this.showPerformanceOverlay});
|
||||
AppConfig({
|
||||
required this.appName,
|
||||
required this.appLink,
|
||||
required this.theme,
|
||||
required this.showPerformanceOverlay,
|
||||
});
|
||||
}
|
||||
|
||||
/// The default configuration of the app.
|
||||
|
||||
Reference in New Issue
Block a user