mirror of
https://github.com/flutter/samples.git
synced 2025-11-09 06:18:49 +00:00
web/charts: Migrate to null safety (#921)
This commit is contained in:
@@ -19,7 +19,7 @@ import 'home.dart';
|
||||
|
||||
/// The main gallery app widget.
|
||||
class GalleryApp extends StatefulWidget {
|
||||
const GalleryApp({Key key}) : super(key: key);
|
||||
const GalleryApp({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
GalleryAppState createState() => GalleryAppState();
|
||||
|
||||
Reference in New Issue
Block a user