Skip to content

Commit 0e238f1

Browse files
committed
Port example to null safety
1 parent 308935a commit 0e238f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ class MyApp extends StatefulWidget {
5656
}
5757
5858
class _MyAppState extends State<MyApp> {
59-
ARKitController arkitController;
59+
late ARKitController arkitController;
6060
6161
@override
6262
void dispose() {
63-
arkitController?.dispose();
63+
arkitController.dispose();
6464
super.dispose();
6565
}
6666

0 commit comments

Comments
 (0)