File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -81,8 +81,7 @@ class _MyAppState extends State<MyApp> {
81
81
),
82
82
Center (
83
83
child: Text (
84
- 'Google Play Store status: ${_playStoreAvailability .toString ().split ('.' ).last }\n ' )
85
- ),
84
+ 'Google Play Store status: ${_playStoreAvailability .toString ().split ('.' ).last }\n ' )),
86
85
MaterialButton (
87
86
onPressed: () => makeGooglePlayServicesAvailable (),
88
87
child: const Text ('Set Google Play Service to availabe' ),
Original file line number Diff line number Diff line change @@ -52,8 +52,8 @@ class GoogleApiAvailability {
52
52
return false ;
53
53
}
54
54
55
- final availability = await _methodChannel. invokeMethod (
56
- 'makeGooglePlayServicesAvailable' );
55
+ final availability =
56
+ await _methodChannel. invokeMethod ( 'makeGooglePlayServicesAvailable' );
57
57
58
58
return availability;
59
59
}
You can’t perform that action at this time.
0 commit comments