Skip to content

Commit 8d5058c

Browse files
committed
fix lint
1 parent eabac7b commit 8d5058c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

example/sample.local.config.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copy this file as "local.config.yaml" in the same folder (.gitignored)
2+
# Enable Google Picker API and test port
23

34
# The developer key needed for the picker API
45
# Credentials/API Keys

lib/picker.dart

+3-2
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ class PickerResponse {
275275
}
276276

277277
class PickerFeature {
278-
final _jsObject;
278+
final JsObject _jsObject;
279279

280280
PickerFeature(this._jsObject);
281281

@@ -377,7 +377,8 @@ GooglePicker _picker;
377377
Future<GooglePicker> loadPicker(Gapi gapi) {
378378
if (_picker == null) {
379379
return gapi.load('picker').then((_) {
380-
_picker = GooglePicker(context['google']['picker'] as JsObject);
380+
_picker =
381+
GooglePicker((context['google'] as JsObject)['picker'] as JsObject);
381382
return _picker;
382383
});
383384
}

tool/web_dev_serve.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Future main() async {
88
print('http://localhost:8081/google_jsapi_picker_example.html');
99
await shell.run('''
1010
11-
pub global run webdev serve example:8081 --live-reload --hostname 0.0.0.0
11+
dart pub global run webdev serve example:8081 --auto=refresh --hostname 0.0.0.0
1212
1313
''');
1414
}

0 commit comments

Comments
 (0)