text
stringlengths 6
13.6M
| id
stringlengths 13
176
| metadata
dict | __index_level_0__
int64 0
1.69k
|
---|---|---|---|
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/dart-patterns-and-records/step_09/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_09/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 25 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.ffigen_app">
</manifest>
| codelabs/ffigen_codelab/step_03/android/src/main/AndroidManifest.xml/0 | {
"file_path": "codelabs/ffigen_codelab/step_03/android/src/main/AndroidManifest.xml",
"repo_id": "codelabs",
"token_count": 44
} | 26 |
import 'package:firebase_auth/firebase_auth.dart' hide EmailAuthProvider;
import 'package:firebase_ui_auth/firebase_ui_auth.dart';
import 'package:firebase_ui_oauth_google/firebase_ui_oauth_google.dart';
import 'package:flutter/material.dart';
import 'home.dart';
import 'main.dart';
class AuthGate extends StatelessWidget {
const AuthGate({super.key});
@override
Widget build(BuildContext context) {
return StreamBuilder<User?>(
stream: FirebaseAuth.instance.authStateChanges(),
builder: (context, snapshot) {
if (!snapshot.hasData) {
return SignInScreen(
providers: [
EmailAuthProvider(),
GoogleProvider(clientId: clientId),
],
headerBuilder: (context, constraints, shrinkOffset) {
return Padding(
padding: const EdgeInsets.all(20),
child: AspectRatio(
aspectRatio: 1,
child: Image.asset('assets/flutterfire_300x.png'),
),
);
},
subtitleBuilder: (context, action) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 8.0),
child: action == AuthAction.signIn
? const Text('Welcome to FlutterFire, please sign in!')
: const Text('Welcome to Flutterfire, please sign up!'),
);
},
footerBuilder: (context, action) {
return const Padding(
padding: EdgeInsets.only(top: 16),
child: Text(
'By signing in, you agree to our terms and conditions.',
style: TextStyle(color: Colors.grey),
),
);
},
);
}
return const HomeScreen();
},
);
}
}
| codelabs/firebase-auth-flutterfire-ui/complete/lib/auth_gate.dart/0 | {
"file_path": "codelabs/firebase-auth-flutterfire-ui/complete/lib/auth_gate.dart",
"repo_id": "codelabs",
"token_count": 921
} | 27 |
// File generated by FlutterFire CLI.
// ignore_for_file: lines_longer_than_80_chars
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
import 'package:flutter/foundation.dart'
show defaultTargetPlatform, kIsWeb, TargetPlatform;
/// Default [FirebaseOptions] for use with your Firebase apps.
///
/// Example:
/// ```dart
/// import 'firebase_options.dart';
/// // ...
/// await Firebase.initializeApp(
/// options: DefaultFirebaseOptions.currentPlatform,
/// );
/// ```
class DefaultFirebaseOptions {
static FirebaseOptions get currentPlatform {
if (kIsWeb) {
return web;
}
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return android;
case TargetPlatform.iOS:
return ios;
case TargetPlatform.macOS:
return macos;
default:
throw UnsupportedError(
'DefaultFirebaseOptions are not supported for this platform.');
}
}
// TODO (codelab user): Replace with your Firebase credentials
// Generate this file with credentials with the FlutterFire CLI
static const FirebaseOptions web = FirebaseOptions(
apiKey: 'YOUR API KEY',
appId: 'YOUR APP ID',
messagingSenderId: '',
projectId: 'flutterfire-ui-codelab',
authDomain: 'flutterfire-ui-codelab.firebaseapp.com',
storageBucket: 'flutterfire-ui-codelab.appspot.com',
measurementId: 'MEASUREMENT ID',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'YOUR API KEY',
appId: 'YOUR APP ID',
messagingSenderId: '',
projectId: 'flutterfire-ui-codelab',
storageBucket: 'flutterfire-ui-codelab.appspot.com',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'YOUR API KEY',
appId: 'YOUR APP ID',
messagingSenderId: '',
projectId: 'flutterfire-ui-codelab',
storageBucket: 'flutterfire-ui-codelab.appspot.com',
iosClientId: 'IOS CLIENT ID',
iosBundleId: 'com.example.BUNDLE',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: 'YOUR API KEY',
appId: 'YOUR APP ID',
messagingSenderId: '',
projectId: 'flutterfire-ui-codelab',
storageBucket: 'flutterfire-ui-codelab.appspot.com',
iosClientId: 'IOS CLIENT ID',
iosBundleId: 'com.example.BUNDLE',
);
}
| codelabs/firebase-auth-flutterfire-ui/start/lib/firebase_options.dart/0 | {
"file_path": "codelabs/firebase-auth-flutterfire-ui/start/lib/firebase_options.dart",
"repo_id": "codelabs",
"token_count": 860
} | 28 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/firebase-emulator-suite/complete/android/gradle.properties/0 | {
"file_path": "codelabs/firebase-emulator-suite/complete/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 29 |
#import "GeneratedPluginRegistrant.h"
| codelabs/firebase-emulator-suite/complete/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/firebase-emulator-suite/complete/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 30 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/firebase-emulator-suite/complete/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/firebase-emulator-suite/complete/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 31 |
{"signIn":{"allowDuplicateEmails":false},"usageMode":"DEFAULT"} | codelabs/firebase-emulator-suite/firebase_seed/auth_export/config.json/0 | {
"file_path": "codelabs/firebase-emulator-suite/firebase_seed/auth_export/config.json",
"repo_id": "codelabs",
"token_count": 19
} | 32 |
#import "GeneratedPluginRegistrant.h"
| codelabs/firebase-get-to-know-flutter/step_05/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/step_05/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 33 |
include: ../../analysis_options.yaml
| codelabs/firebase-get-to-know-flutter/step_06/analysis_options.yaml/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/step_06/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 34 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/haiku_generator/step0/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/haiku_generator/step0/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 35 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/haiku_generator/step2/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/haiku_generator/step2/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 36 |
enum ProductStatus {
purchasable,
purchased,
pending,
}
class PurchasableProduct {
final String title;
final String description;
final String price;
ProductStatus status;
PurchasableProduct(this.title, this.description, this.price)
: status = ProductStatus.purchasable;
}
| codelabs/in_app_purchases/step_00/app/lib/model/purchasable_product.dart/0 | {
"file_path": "codelabs/in_app_purchases/step_00/app/lib/model/purchasable_product.dart",
"repo_id": "codelabs",
"token_count": 91
} | 37 |
#include "Generated.xcconfig"
| codelabs/namer/step_04_a_widget/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_04_a_widget/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 38 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/namer/step_04_a_widget/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_04_a_widget/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 39 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/namer/step_04_b_behavior/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_04_b_behavior/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 40 |
#include "Generated.xcconfig"
| codelabs/namer/step_05_d_theme/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_05_d_theme/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 41 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/namer/step_05_d_theme/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_05_d_theme/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 42 |
#import "GeneratedPluginRegistrant.h"
| codelabs/namer/step_05_e_text_style/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/namer/step_05_e_text_style/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 43 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/namer/step_05_e_text_style/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_05_e_text_style/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 44 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/namer/step_07_a_split_my_home_page/android/gradle.properties/0 | {
"file_path": "codelabs/namer/step_07_a_split_my_home_page/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 45 |
#include "Generated.xcconfig"
| codelabs/namer/step_07_c_add_selectedindex/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_07_c_add_selectedindex/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 46 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/namer/step_07_c_add_selectedindex/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_07_c_add_selectedindex/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 47 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/namer/step_07_d_use_selectedindex/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_07_d_use_selectedindex/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 48 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/next-gen-ui/step_02_c/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/next-gen-ui/step_02_c/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 49 |
#import "GeneratedPluginRegistrant.h"
| codelabs/next-gen-ui/step_03_a/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/next-gen-ui/step_03_a/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 50 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/next-gen-ui/step_03_c/android/gradle.properties/0 | {
"file_path": "codelabs/next-gen-ui/step_03_c/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 51 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/next-gen-ui/step_04_e/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/next-gen-ui/step_04_e/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 52 |
#import "GeneratedPluginRegistrant.h"
| codelabs/next-gen-ui/step_05_a/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/next-gen-ui/step_05_a/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 53 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/next-gen-ui/step_06/android/gradle.properties/0 | {
"file_path": "codelabs/next-gen-ui/step_06/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 54 |
include: ../../analysis_options.yaml
| codelabs/testing_codelab/step_03/analysis_options.yaml/0 | {
"file_path": "codelabs/testing_codelab/step_03/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 55 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/testing_codelab/step_04/android/gradle.properties/0 | {
"file_path": "codelabs/testing_codelab/step_04/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 56 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/testing_codelab/step_05/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/testing_codelab/step_05/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 57 |
#import "GeneratedPluginRegistrant.h"
| codelabs/testing_codelab/step_06/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/testing_codelab/step_06/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 58 |
// Copyright 2020 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter_driver/flutter_driver.dart' as driver;
import 'package:integration_test/integration_test_driver.dart';
Future<void> main() {
return integrationDriver(
responseDataCallback: (data) async {
if (data != null) {
final timeline = driver.Timeline.fromJson(
data['scrolling_summary'] as Map<String, dynamic>);
final summary = driver.TimelineSummary.summarize(timeline);
await summary.writeTimelineToFile(
'scrolling_summary',
pretty: true,
includeSummary: true,
);
}
},
);
}
| codelabs/testing_codelab/step_08/test_driver/perf_driver.dart/0 | {
"file_path": "codelabs/testing_codelab/step_08/test_driver/perf_driver.dart",
"repo_id": "codelabs",
"token_count": 283
} | 59 |
#import "GeneratedPluginRegistrant.h"
| codelabs/tfrs-flutter/finished/frontend/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/tfrs-flutter/finished/frontend/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 60 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/tfrs-flutter/finished/frontend/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/finished/frontend/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 61 |
#include "Generated.xcconfig"
| codelabs/tfrs-flutter/step4/frontend/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/step4/frontend/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 62 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/tfrs-flutter/step4/frontend/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/step4/frontend/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 63 |
///
// Generated code. Do not modify.
// source: tensorflow/core/framework/attr_value.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
import 'dart:core' as $core;
import 'package:fixnum/fixnum.dart' as $fixnum;
import 'package:protobuf/protobuf.dart' as $pb;
import 'tensor_shape.pb.dart' as $0;
import 'tensor.pb.dart' as $1;
import 'types.pbenum.dart' as $2;
class AttrValue_ListValue extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'AttrValue.ListValue',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..p<$core.List<$core.int>>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 's',
$pb.PbFieldType.PY)
..p<$fixnum.Int64>(
3,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'i',
$pb.PbFieldType.K6)
..p<$core.double>(
4,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'f',
$pb.PbFieldType.KF)
..p<$core.bool>(
5,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'b',
$pb.PbFieldType.KB)
..pc<$2.DataType>(
6,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'type',
$pb.PbFieldType.KE,
valueOf: $2.DataType.valueOf,
enumValues: $2.DataType.values)
..pc<$0.TensorShapeProto>(
7,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'shape',
$pb.PbFieldType.PM,
subBuilder: $0.TensorShapeProto.create)
..pc<$1.TensorProto>(
8,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'tensor',
$pb.PbFieldType.PM,
subBuilder: $1.TensorProto.create)
..pc<NameAttrList>(
9,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'func',
$pb.PbFieldType.PM,
subBuilder: NameAttrList.create)
..hasRequiredFields = false;
AttrValue_ListValue._() : super();
factory AttrValue_ListValue({
$core.Iterable<$core.List<$core.int>>? s,
$core.Iterable<$fixnum.Int64>? i,
$core.Iterable<$core.double>? f,
$core.Iterable<$core.bool>? b,
$core.Iterable<$2.DataType>? type,
$core.Iterable<$0.TensorShapeProto>? shape,
$core.Iterable<$1.TensorProto>? tensor,
$core.Iterable<NameAttrList>? func,
}) {
final _result = create();
if (s != null) {
_result.s.addAll(s);
}
if (i != null) {
_result.i.addAll(i);
}
if (f != null) {
_result.f.addAll(f);
}
if (b != null) {
_result.b.addAll(b);
}
if (type != null) {
_result.type.addAll(type);
}
if (shape != null) {
_result.shape.addAll(shape);
}
if (tensor != null) {
_result.tensor.addAll(tensor);
}
if (func != null) {
_result.func.addAll(func);
}
return _result;
}
factory AttrValue_ListValue.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory AttrValue_ListValue.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
AttrValue_ListValue clone() => AttrValue_ListValue()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
AttrValue_ListValue copyWith(void Function(AttrValue_ListValue) updates) =>
super.copyWith((message) => updates(message as AttrValue_ListValue))
as AttrValue_ListValue; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AttrValue_ListValue create() => AttrValue_ListValue._();
AttrValue_ListValue createEmptyInstance() => create();
static $pb.PbList<AttrValue_ListValue> createRepeated() =>
$pb.PbList<AttrValue_ListValue>();
@$core.pragma('dart2js:noInline')
static AttrValue_ListValue getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<AttrValue_ListValue>(create);
static AttrValue_ListValue? _defaultInstance;
@$pb.TagNumber(2)
$core.List<$core.List<$core.int>> get s => $_getList(0);
@$pb.TagNumber(3)
$core.List<$fixnum.Int64> get i => $_getList(1);
@$pb.TagNumber(4)
$core.List<$core.double> get f => $_getList(2);
@$pb.TagNumber(5)
$core.List<$core.bool> get b => $_getList(3);
@$pb.TagNumber(6)
$core.List<$2.DataType> get type => $_getList(4);
@$pb.TagNumber(7)
$core.List<$0.TensorShapeProto> get shape => $_getList(5);
@$pb.TagNumber(8)
$core.List<$1.TensorProto> get tensor => $_getList(6);
@$pb.TagNumber(9)
$core.List<NameAttrList> get func => $_getList(7);
}
enum AttrValue_Value {
list,
s,
i,
f,
b,
type,
shape,
tensor,
placeholder,
func,
notSet
}
class AttrValue extends $pb.GeneratedMessage {
static const $core.Map<$core.int, AttrValue_Value> _AttrValue_ValueByTag = {
1: AttrValue_Value.list,
2: AttrValue_Value.s,
3: AttrValue_Value.i,
4: AttrValue_Value.f,
5: AttrValue_Value.b,
6: AttrValue_Value.type,
7: AttrValue_Value.shape,
8: AttrValue_Value.tensor,
9: AttrValue_Value.placeholder,
10: AttrValue_Value.func,
0: AttrValue_Value.notSet
};
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'AttrValue',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..oo(0, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
..aOM<AttrValue_ListValue>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'list',
subBuilder: AttrValue_ListValue.create)
..a<$core.List<$core.int>>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 's',
$pb.PbFieldType.OY)
..aInt64(
3,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'i')
..a<$core.double>(
4,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'f',
$pb.PbFieldType.OF)
..aOB(
5,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'b')
..e<$2.DataType>(
6,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'type',
$pb.PbFieldType.OE,
defaultOrMaker: $2.DataType.DT_INVALID,
valueOf: $2.DataType.valueOf,
enumValues: $2.DataType.values)
..aOM<$0.TensorShapeProto>(
7,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'shape',
subBuilder: $0.TensorShapeProto.create)
..aOM<$1.TensorProto>(
8,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'tensor',
subBuilder: $1.TensorProto.create)
..aOS(
9,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'placeholder')
..aOM<NameAttrList>(
10,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'func',
subBuilder: NameAttrList.create)
..hasRequiredFields = false;
AttrValue._() : super();
factory AttrValue({
AttrValue_ListValue? list,
$core.List<$core.int>? s,
$fixnum.Int64? i,
$core.double? f,
$core.bool? b,
$2.DataType? type,
$0.TensorShapeProto? shape,
$1.TensorProto? tensor,
$core.String? placeholder,
NameAttrList? func,
}) {
final _result = create();
if (list != null) {
_result.list = list;
}
if (s != null) {
_result.s = s;
}
if (i != null) {
_result.i = i;
}
if (f != null) {
_result.f = f;
}
if (b != null) {
_result.b = b;
}
if (type != null) {
_result.type = type;
}
if (shape != null) {
_result.shape = shape;
}
if (tensor != null) {
_result.tensor = tensor;
}
if (placeholder != null) {
_result.placeholder = placeholder;
}
if (func != null) {
_result.func = func;
}
return _result;
}
factory AttrValue.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory AttrValue.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
AttrValue clone() => AttrValue()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
AttrValue copyWith(void Function(AttrValue) updates) =>
super.copyWith((message) => updates(message as AttrValue))
as AttrValue; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AttrValue create() => AttrValue._();
AttrValue createEmptyInstance() => create();
static $pb.PbList<AttrValue> createRepeated() => $pb.PbList<AttrValue>();
@$core.pragma('dart2js:noInline')
static AttrValue getDefault() =>
_defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AttrValue>(create);
static AttrValue? _defaultInstance;
AttrValue_Value whichValue() => _AttrValue_ValueByTag[$_whichOneof(0)]!;
void clearValue() => clearField($_whichOneof(0));
@$pb.TagNumber(1)
AttrValue_ListValue get list => $_getN(0);
@$pb.TagNumber(1)
set list(AttrValue_ListValue v) {
setField(1, v);
}
@$pb.TagNumber(1)
$core.bool hasList() => $_has(0);
@$pb.TagNumber(1)
void clearList() => clearField(1);
@$pb.TagNumber(1)
AttrValue_ListValue ensureList() => $_ensure(0);
@$pb.TagNumber(2)
$core.List<$core.int> get s => $_getN(1);
@$pb.TagNumber(2)
set s($core.List<$core.int> v) {
$_setBytes(1, v);
}
@$pb.TagNumber(2)
$core.bool hasS() => $_has(1);
@$pb.TagNumber(2)
void clearS() => clearField(2);
@$pb.TagNumber(3)
$fixnum.Int64 get i => $_getI64(2);
@$pb.TagNumber(3)
set i($fixnum.Int64 v) {
$_setInt64(2, v);
}
@$pb.TagNumber(3)
$core.bool hasI() => $_has(2);
@$pb.TagNumber(3)
void clearI() => clearField(3);
@$pb.TagNumber(4)
$core.double get f => $_getN(3);
@$pb.TagNumber(4)
set f($core.double v) {
$_setFloat(3, v);
}
@$pb.TagNumber(4)
$core.bool hasF() => $_has(3);
@$pb.TagNumber(4)
void clearF() => clearField(4);
@$pb.TagNumber(5)
$core.bool get b => $_getBF(4);
@$pb.TagNumber(5)
set b($core.bool v) {
$_setBool(4, v);
}
@$pb.TagNumber(5)
$core.bool hasB() => $_has(4);
@$pb.TagNumber(5)
void clearB() => clearField(5);
@$pb.TagNumber(6)
$2.DataType get type => $_getN(5);
@$pb.TagNumber(6)
set type($2.DataType v) {
setField(6, v);
}
@$pb.TagNumber(6)
$core.bool hasType() => $_has(5);
@$pb.TagNumber(6)
void clearType() => clearField(6);
@$pb.TagNumber(7)
$0.TensorShapeProto get shape => $_getN(6);
@$pb.TagNumber(7)
set shape($0.TensorShapeProto v) {
setField(7, v);
}
@$pb.TagNumber(7)
$core.bool hasShape() => $_has(6);
@$pb.TagNumber(7)
void clearShape() => clearField(7);
@$pb.TagNumber(7)
$0.TensorShapeProto ensureShape() => $_ensure(6);
@$pb.TagNumber(8)
$1.TensorProto get tensor => $_getN(7);
@$pb.TagNumber(8)
set tensor($1.TensorProto v) {
setField(8, v);
}
@$pb.TagNumber(8)
$core.bool hasTensor() => $_has(7);
@$pb.TagNumber(8)
void clearTensor() => clearField(8);
@$pb.TagNumber(8)
$1.TensorProto ensureTensor() => $_ensure(7);
@$pb.TagNumber(9)
$core.String get placeholder => $_getSZ(8);
@$pb.TagNumber(9)
set placeholder($core.String v) {
$_setString(8, v);
}
@$pb.TagNumber(9)
$core.bool hasPlaceholder() => $_has(8);
@$pb.TagNumber(9)
void clearPlaceholder() => clearField(9);
@$pb.TagNumber(10)
NameAttrList get func => $_getN(9);
@$pb.TagNumber(10)
set func(NameAttrList v) {
setField(10, v);
}
@$pb.TagNumber(10)
$core.bool hasFunc() => $_has(9);
@$pb.TagNumber(10)
void clearFunc() => clearField(10);
@$pb.TagNumber(10)
NameAttrList ensureFunc() => $_ensure(9);
}
class NameAttrList extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'NameAttrList',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..aOS(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'name')
..m<$core.String, AttrValue>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'attr',
entryClassName: 'NameAttrList.AttrEntry',
keyFieldType: $pb.PbFieldType.OS,
valueFieldType: $pb.PbFieldType.OM,
valueCreator: AttrValue.create,
packageName: const $pb.PackageName('tensorflow'))
..hasRequiredFields = false;
NameAttrList._() : super();
factory NameAttrList({
$core.String? name,
$core.Map<$core.String, AttrValue>? attr,
}) {
final _result = create();
if (name != null) {
_result.name = name;
}
if (attr != null) {
_result.attr.addAll(attr);
}
return _result;
}
factory NameAttrList.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory NameAttrList.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
NameAttrList clone() => NameAttrList()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
NameAttrList copyWith(void Function(NameAttrList) updates) =>
super.copyWith((message) => updates(message as NameAttrList))
as NameAttrList; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static NameAttrList create() => NameAttrList._();
NameAttrList createEmptyInstance() => create();
static $pb.PbList<NameAttrList> createRepeated() =>
$pb.PbList<NameAttrList>();
@$core.pragma('dart2js:noInline')
static NameAttrList getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<NameAttrList>(create);
static NameAttrList? _defaultInstance;
@$pb.TagNumber(1)
$core.String get name => $_getSZ(0);
@$pb.TagNumber(1)
set name($core.String v) {
$_setString(0, v);
}
@$pb.TagNumber(1)
$core.bool hasName() => $_has(0);
@$pb.TagNumber(1)
void clearName() => clearField(1);
@$pb.TagNumber(2)
$core.Map<$core.String, AttrValue> get attr => $_getMap(1);
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/attr_value.pb.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/attr_value.pb.dart",
"repo_id": "codelabs",
"token_count": 7641
} | 64 |
///
// Generated code. Do not modify.
// source: tensorflow/core/framework/op_def.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/op_def.pbenum.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/op_def.pbenum.dart",
"repo_id": "codelabs",
"token_count": 117
} | 65 |
///
// Generated code. Do not modify.
// source: tensorflow/core/framework/variable.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields,deprecated_member_use_from_same_package
import 'dart:core' as $core;
import 'dart:convert' as $convert;
import 'dart:typed_data' as $typed_data;
@$core.Deprecated('Use variableSynchronizationDescriptor instead')
const VariableSynchronization$json = const {
'1': 'VariableSynchronization',
'2': const [
const {'1': 'VARIABLE_SYNCHRONIZATION_AUTO', '2': 0},
const {'1': 'VARIABLE_SYNCHRONIZATION_NONE', '2': 1},
const {'1': 'VARIABLE_SYNCHRONIZATION_ON_WRITE', '2': 2},
const {'1': 'VARIABLE_SYNCHRONIZATION_ON_READ', '2': 3},
],
};
/// Descriptor for `VariableSynchronization`. Decode as a `google.protobuf.EnumDescriptorProto`.
final $typed_data.Uint8List variableSynchronizationDescriptor =
$convert.base64Decode(
'ChdWYXJpYWJsZVN5bmNocm9uaXphdGlvbhIhCh1WQVJJQUJMRV9TWU5DSFJPTklaQVRJT05fQVVUTxAAEiEKHVZBUklBQkxFX1NZTkNIUk9OSVpBVElPTl9OT05FEAESJQohVkFSSUFCTEVfU1lOQ0hST05JWkFUSU9OX09OX1dSSVRFEAISJAogVkFSSUFCTEVfU1lOQ0hST05JWkFUSU9OX09OX1JFQUQQAw==');
@$core.Deprecated('Use variableAggregationDescriptor instead')
const VariableAggregation$json = const {
'1': 'VariableAggregation',
'2': const [
const {'1': 'VARIABLE_AGGREGATION_NONE', '2': 0},
const {'1': 'VARIABLE_AGGREGATION_SUM', '2': 1},
const {'1': 'VARIABLE_AGGREGATION_MEAN', '2': 2},
const {'1': 'VARIABLE_AGGREGATION_ONLY_FIRST_REPLICA', '2': 3},
],
};
/// Descriptor for `VariableAggregation`. Decode as a `google.protobuf.EnumDescriptorProto`.
final $typed_data.Uint8List variableAggregationDescriptor = $convert.base64Decode(
'ChNWYXJpYWJsZUFnZ3JlZ2F0aW9uEh0KGVZBUklBQkxFX0FHR1JFR0FUSU9OX05PTkUQABIcChhWQVJJQUJMRV9BR0dSRUdBVElPTl9TVU0QARIdChlWQVJJQUJMRV9BR0dSRUdBVElPTl9NRUFOEAISKwonVkFSSUFCTEVfQUdHUkVHQVRJT05fT05MWV9GSVJTVF9SRVBMSUNBEAM=');
@$core.Deprecated('Use variableDefDescriptor instead')
const VariableDef$json = const {
'1': 'VariableDef',
'2': const [
const {'1': 'variable_name', '3': 1, '4': 1, '5': 9, '10': 'variableName'},
const {
'1': 'initial_value_name',
'3': 6,
'4': 1,
'5': 9,
'10': 'initialValueName'
},
const {
'1': 'initializer_name',
'3': 2,
'4': 1,
'5': 9,
'10': 'initializerName'
},
const {'1': 'snapshot_name', '3': 3, '4': 1, '5': 9, '10': 'snapshotName'},
const {
'1': 'save_slice_info_def',
'3': 4,
'4': 1,
'5': 11,
'6': '.tensorflow.SaveSliceInfoDef',
'10': 'saveSliceInfoDef'
},
const {'1': 'is_resource', '3': 5, '4': 1, '5': 8, '10': 'isResource'},
const {'1': 'trainable', '3': 7, '4': 1, '5': 8, '10': 'trainable'},
const {
'1': 'synchronization',
'3': 8,
'4': 1,
'5': 14,
'6': '.tensorflow.VariableSynchronization',
'10': 'synchronization'
},
const {
'1': 'aggregation',
'3': 9,
'4': 1,
'5': 14,
'6': '.tensorflow.VariableAggregation',
'10': 'aggregation'
},
],
};
/// Descriptor for `VariableDef`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List variableDefDescriptor = $convert.base64Decode(
'CgtWYXJpYWJsZURlZhIjCg12YXJpYWJsZV9uYW1lGAEgASgJUgx2YXJpYWJsZU5hbWUSLAoSaW5pdGlhbF92YWx1ZV9uYW1lGAYgASgJUhBpbml0aWFsVmFsdWVOYW1lEikKEGluaXRpYWxpemVyX25hbWUYAiABKAlSD2luaXRpYWxpemVyTmFtZRIjCg1zbmFwc2hvdF9uYW1lGAMgASgJUgxzbmFwc2hvdE5hbWUSSwoTc2F2ZV9zbGljZV9pbmZvX2RlZhgEIAEoCzIcLnRlbnNvcmZsb3cuU2F2ZVNsaWNlSW5mb0RlZlIQc2F2ZVNsaWNlSW5mb0RlZhIfCgtpc19yZXNvdXJjZRgFIAEoCFIKaXNSZXNvdXJjZRIcCgl0cmFpbmFibGUYByABKAhSCXRyYWluYWJsZRJNCg9zeW5jaHJvbml6YXRpb24YCCABKA4yIy50ZW5zb3JmbG93LlZhcmlhYmxlU3luY2hyb25pemF0aW9uUg9zeW5jaHJvbml6YXRpb24SQQoLYWdncmVnYXRpb24YCSABKA4yHy50ZW5zb3JmbG93LlZhcmlhYmxlQWdncmVnYXRpb25SC2FnZ3JlZ2F0aW9u');
@$core.Deprecated('Use saveSliceInfoDefDescriptor instead')
const SaveSliceInfoDef$json = const {
'1': 'SaveSliceInfoDef',
'2': const [
const {'1': 'full_name', '3': 1, '4': 1, '5': 9, '10': 'fullName'},
const {'1': 'full_shape', '3': 2, '4': 3, '5': 3, '10': 'fullShape'},
const {'1': 'var_offset', '3': 3, '4': 3, '5': 3, '10': 'varOffset'},
const {'1': 'var_shape', '3': 4, '4': 3, '5': 3, '10': 'varShape'},
],
};
/// Descriptor for `SaveSliceInfoDef`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List saveSliceInfoDefDescriptor = $convert.base64Decode(
'ChBTYXZlU2xpY2VJbmZvRGVmEhsKCWZ1bGxfbmFtZRgBIAEoCVIIZnVsbE5hbWUSHQoKZnVsbF9zaGFwZRgCIAMoA1IJZnVsbFNoYXBlEh0KCnZhcl9vZmZzZXQYAyADKANSCXZhck9mZnNldBIbCgl2YXJfc2hhcGUYBCADKANSCHZhclNoYXBl');
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/variable.pbjson.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/variable.pbjson.dart",
"repo_id": "codelabs",
"token_count": 2548
} | 66 |
///
// Generated code. Do not modify.
// source: tensorflow/core/protobuf/trackable_object_graph.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import '../../../google/protobuf/wrappers.pb.dart' as $0;
class TrackableObjectGraph_TrackableObject_ObjectReference
extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'TrackableObjectGraph.TrackableObject.ObjectReference',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..a<$core.int>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'nodeId',
$pb.PbFieldType.O3)
..aOS(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'localName')
..hasRequiredFields = false;
TrackableObjectGraph_TrackableObject_ObjectReference._() : super();
factory TrackableObjectGraph_TrackableObject_ObjectReference({
$core.int? nodeId,
$core.String? localName,
}) {
final _result = create();
if (nodeId != null) {
_result.nodeId = nodeId;
}
if (localName != null) {
_result.localName = localName;
}
return _result;
}
factory TrackableObjectGraph_TrackableObject_ObjectReference.fromBuffer(
$core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory TrackableObjectGraph_TrackableObject_ObjectReference.fromJson(
$core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
TrackableObjectGraph_TrackableObject_ObjectReference clone() =>
TrackableObjectGraph_TrackableObject_ObjectReference()
..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
TrackableObjectGraph_TrackableObject_ObjectReference copyWith(
void Function(TrackableObjectGraph_TrackableObject_ObjectReference)
updates) =>
super.copyWith((message) => updates(
message as TrackableObjectGraph_TrackableObject_ObjectReference))
as TrackableObjectGraph_TrackableObject_ObjectReference; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static TrackableObjectGraph_TrackableObject_ObjectReference create() =>
TrackableObjectGraph_TrackableObject_ObjectReference._();
TrackableObjectGraph_TrackableObject_ObjectReference createEmptyInstance() =>
create();
static $pb.PbList<TrackableObjectGraph_TrackableObject_ObjectReference>
createRepeated() =>
$pb.PbList<TrackableObjectGraph_TrackableObject_ObjectReference>();
@$core.pragma('dart2js:noInline')
static TrackableObjectGraph_TrackableObject_ObjectReference getDefault() =>
_defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<
TrackableObjectGraph_TrackableObject_ObjectReference>(create);
static TrackableObjectGraph_TrackableObject_ObjectReference? _defaultInstance;
@$pb.TagNumber(1)
$core.int get nodeId => $_getIZ(0);
@$pb.TagNumber(1)
set nodeId($core.int v) {
$_setSignedInt32(0, v);
}
@$pb.TagNumber(1)
$core.bool hasNodeId() => $_has(0);
@$pb.TagNumber(1)
void clearNodeId() => clearField(1);
@$pb.TagNumber(2)
$core.String get localName => $_getSZ(1);
@$pb.TagNumber(2)
set localName($core.String v) {
$_setString(1, v);
}
@$pb.TagNumber(2)
$core.bool hasLocalName() => $_has(1);
@$pb.TagNumber(2)
void clearLocalName() => clearField(2);
}
class TrackableObjectGraph_TrackableObject_SerializedTensor
extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'TrackableObjectGraph.TrackableObject.SerializedTensor',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..aOS(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'name')
..aOS(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'fullName')
..aOS(
3,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'checkpointKey')
..aOB(
4,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'optionalRestore')
..hasRequiredFields = false;
TrackableObjectGraph_TrackableObject_SerializedTensor._() : super();
factory TrackableObjectGraph_TrackableObject_SerializedTensor({
$core.String? name,
$core.String? fullName,
$core.String? checkpointKey,
$core.bool? optionalRestore,
}) {
final _result = create();
if (name != null) {
_result.name = name;
}
if (fullName != null) {
_result.fullName = fullName;
}
if (checkpointKey != null) {
_result.checkpointKey = checkpointKey;
}
if (optionalRestore != null) {
_result.optionalRestore = optionalRestore;
}
return _result;
}
factory TrackableObjectGraph_TrackableObject_SerializedTensor.fromBuffer(
$core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory TrackableObjectGraph_TrackableObject_SerializedTensor.fromJson(
$core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
TrackableObjectGraph_TrackableObject_SerializedTensor clone() =>
TrackableObjectGraph_TrackableObject_SerializedTensor()
..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
TrackableObjectGraph_TrackableObject_SerializedTensor copyWith(
void Function(TrackableObjectGraph_TrackableObject_SerializedTensor)
updates) =>
super.copyWith((message) => updates(
message as TrackableObjectGraph_TrackableObject_SerializedTensor))
as TrackableObjectGraph_TrackableObject_SerializedTensor; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static TrackableObjectGraph_TrackableObject_SerializedTensor create() =>
TrackableObjectGraph_TrackableObject_SerializedTensor._();
TrackableObjectGraph_TrackableObject_SerializedTensor createEmptyInstance() =>
create();
static $pb.PbList<TrackableObjectGraph_TrackableObject_SerializedTensor>
createRepeated() =>
$pb.PbList<TrackableObjectGraph_TrackableObject_SerializedTensor>();
@$core.pragma('dart2js:noInline')
static TrackableObjectGraph_TrackableObject_SerializedTensor getDefault() =>
_defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<
TrackableObjectGraph_TrackableObject_SerializedTensor>(create);
static TrackableObjectGraph_TrackableObject_SerializedTensor?
_defaultInstance;
@$pb.TagNumber(1)
$core.String get name => $_getSZ(0);
@$pb.TagNumber(1)
set name($core.String v) {
$_setString(0, v);
}
@$pb.TagNumber(1)
$core.bool hasName() => $_has(0);
@$pb.TagNumber(1)
void clearName() => clearField(1);
@$pb.TagNumber(2)
$core.String get fullName => $_getSZ(1);
@$pb.TagNumber(2)
set fullName($core.String v) {
$_setString(1, v);
}
@$pb.TagNumber(2)
$core.bool hasFullName() => $_has(1);
@$pb.TagNumber(2)
void clearFullName() => clearField(2);
@$pb.TagNumber(3)
$core.String get checkpointKey => $_getSZ(2);
@$pb.TagNumber(3)
set checkpointKey($core.String v) {
$_setString(2, v);
}
@$pb.TagNumber(3)
$core.bool hasCheckpointKey() => $_has(2);
@$pb.TagNumber(3)
void clearCheckpointKey() => clearField(3);
@$pb.TagNumber(4)
$core.bool get optionalRestore => $_getBF(3);
@$pb.TagNumber(4)
set optionalRestore($core.bool v) {
$_setBool(3, v);
}
@$pb.TagNumber(4)
$core.bool hasOptionalRestore() => $_has(3);
@$pb.TagNumber(4)
void clearOptionalRestore() => clearField(4);
}
class TrackableObjectGraph_TrackableObject_SlotVariableReference
extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'TrackableObjectGraph.TrackableObject.SlotVariableReference',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..a<$core.int>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'originalVariableNodeId',
$pb.PbFieldType.O3)
..aOS(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'slotName')
..a<$core.int>(
3,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'slotVariableNodeId',
$pb.PbFieldType.O3)
..hasRequiredFields = false;
TrackableObjectGraph_TrackableObject_SlotVariableReference._() : super();
factory TrackableObjectGraph_TrackableObject_SlotVariableReference({
$core.int? originalVariableNodeId,
$core.String? slotName,
$core.int? slotVariableNodeId,
}) {
final _result = create();
if (originalVariableNodeId != null) {
_result.originalVariableNodeId = originalVariableNodeId;
}
if (slotName != null) {
_result.slotName = slotName;
}
if (slotVariableNodeId != null) {
_result.slotVariableNodeId = slotVariableNodeId;
}
return _result;
}
factory TrackableObjectGraph_TrackableObject_SlotVariableReference.fromBuffer(
$core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory TrackableObjectGraph_TrackableObject_SlotVariableReference.fromJson(
$core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
TrackableObjectGraph_TrackableObject_SlotVariableReference clone() =>
TrackableObjectGraph_TrackableObject_SlotVariableReference()
..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
TrackableObjectGraph_TrackableObject_SlotVariableReference copyWith(
void Function(
TrackableObjectGraph_TrackableObject_SlotVariableReference)
updates) =>
super.copyWith((message) => updates(message
as TrackableObjectGraph_TrackableObject_SlotVariableReference))
as TrackableObjectGraph_TrackableObject_SlotVariableReference; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static TrackableObjectGraph_TrackableObject_SlotVariableReference create() =>
TrackableObjectGraph_TrackableObject_SlotVariableReference._();
TrackableObjectGraph_TrackableObject_SlotVariableReference
createEmptyInstance() => create();
static $pb.PbList<TrackableObjectGraph_TrackableObject_SlotVariableReference>
createRepeated() => $pb.PbList<
TrackableObjectGraph_TrackableObject_SlotVariableReference>();
@$core.pragma('dart2js:noInline')
static TrackableObjectGraph_TrackableObject_SlotVariableReference
getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<
TrackableObjectGraph_TrackableObject_SlotVariableReference>(create);
static TrackableObjectGraph_TrackableObject_SlotVariableReference?
_defaultInstance;
@$pb.TagNumber(1)
$core.int get originalVariableNodeId => $_getIZ(0);
@$pb.TagNumber(1)
set originalVariableNodeId($core.int v) {
$_setSignedInt32(0, v);
}
@$pb.TagNumber(1)
$core.bool hasOriginalVariableNodeId() => $_has(0);
@$pb.TagNumber(1)
void clearOriginalVariableNodeId() => clearField(1);
@$pb.TagNumber(2)
$core.String get slotName => $_getSZ(1);
@$pb.TagNumber(2)
set slotName($core.String v) {
$_setString(1, v);
}
@$pb.TagNumber(2)
$core.bool hasSlotName() => $_has(1);
@$pb.TagNumber(2)
void clearSlotName() => clearField(2);
@$pb.TagNumber(3)
$core.int get slotVariableNodeId => $_getIZ(2);
@$pb.TagNumber(3)
set slotVariableNodeId($core.int v) {
$_setSignedInt32(2, v);
}
@$pb.TagNumber(3)
$core.bool hasSlotVariableNodeId() => $_has(2);
@$pb.TagNumber(3)
void clearSlotVariableNodeId() => clearField(3);
}
class TrackableObjectGraph_TrackableObject extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'TrackableObjectGraph.TrackableObject',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..pc<TrackableObjectGraph_TrackableObject_ObjectReference>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'children',
$pb.PbFieldType.PM,
subBuilder: TrackableObjectGraph_TrackableObject_ObjectReference.create)
..pc<TrackableObjectGraph_TrackableObject_SerializedTensor>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'attributes',
$pb.PbFieldType.PM,
subBuilder:
TrackableObjectGraph_TrackableObject_SerializedTensor.create)
..pc<TrackableObjectGraph_TrackableObject_SlotVariableReference>(
3,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'slotVariables',
$pb.PbFieldType.PM,
subBuilder:
TrackableObjectGraph_TrackableObject_SlotVariableReference.create)
..aOM<RegisteredSaver>(
4,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'registeredSaver',
subBuilder: RegisteredSaver.create)
..aOM<$0.BoolValue>(
5,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'hasCheckpointValues',
subBuilder: $0.BoolValue.create)
..hasRequiredFields = false;
TrackableObjectGraph_TrackableObject._() : super();
factory TrackableObjectGraph_TrackableObject({
$core.Iterable<TrackableObjectGraph_TrackableObject_ObjectReference>?
children,
$core.Iterable<TrackableObjectGraph_TrackableObject_SerializedTensor>?
attributes,
$core.Iterable<TrackableObjectGraph_TrackableObject_SlotVariableReference>?
slotVariables,
RegisteredSaver? registeredSaver,
$0.BoolValue? hasCheckpointValues,
}) {
final _result = create();
if (children != null) {
_result.children.addAll(children);
}
if (attributes != null) {
_result.attributes.addAll(attributes);
}
if (slotVariables != null) {
_result.slotVariables.addAll(slotVariables);
}
if (registeredSaver != null) {
_result.registeredSaver = registeredSaver;
}
if (hasCheckpointValues != null) {
_result.hasCheckpointValues = hasCheckpointValues;
}
return _result;
}
factory TrackableObjectGraph_TrackableObject.fromBuffer(
$core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory TrackableObjectGraph_TrackableObject.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
TrackableObjectGraph_TrackableObject clone() =>
TrackableObjectGraph_TrackableObject()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
TrackableObjectGraph_TrackableObject copyWith(
void Function(TrackableObjectGraph_TrackableObject) updates) =>
super.copyWith((message) =>
updates(message as TrackableObjectGraph_TrackableObject))
as TrackableObjectGraph_TrackableObject; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static TrackableObjectGraph_TrackableObject create() =>
TrackableObjectGraph_TrackableObject._();
TrackableObjectGraph_TrackableObject createEmptyInstance() => create();
static $pb.PbList<TrackableObjectGraph_TrackableObject> createRepeated() =>
$pb.PbList<TrackableObjectGraph_TrackableObject>();
@$core.pragma('dart2js:noInline')
static TrackableObjectGraph_TrackableObject getDefault() =>
_defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<
TrackableObjectGraph_TrackableObject>(create);
static TrackableObjectGraph_TrackableObject? _defaultInstance;
@$pb.TagNumber(1)
$core.List<TrackableObjectGraph_TrackableObject_ObjectReference>
get children => $_getList(0);
@$pb.TagNumber(2)
$core.List<TrackableObjectGraph_TrackableObject_SerializedTensor>
get attributes => $_getList(1);
@$pb.TagNumber(3)
$core.List<TrackableObjectGraph_TrackableObject_SlotVariableReference>
get slotVariables => $_getList(2);
@$pb.TagNumber(4)
RegisteredSaver get registeredSaver => $_getN(3);
@$pb.TagNumber(4)
set registeredSaver(RegisteredSaver v) {
setField(4, v);
}
@$pb.TagNumber(4)
$core.bool hasRegisteredSaver() => $_has(3);
@$pb.TagNumber(4)
void clearRegisteredSaver() => clearField(4);
@$pb.TagNumber(4)
RegisteredSaver ensureRegisteredSaver() => $_ensure(3);
@$pb.TagNumber(5)
$0.BoolValue get hasCheckpointValues => $_getN(4);
@$pb.TagNumber(5)
set hasCheckpointValues($0.BoolValue v) {
setField(5, v);
}
@$pb.TagNumber(5)
$core.bool hasHasCheckpointValues() => $_has(4);
@$pb.TagNumber(5)
void clearHasCheckpointValues() => clearField(5);
@$pb.TagNumber(5)
$0.BoolValue ensureHasCheckpointValues() => $_ensure(4);
}
class TrackableObjectGraph extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'TrackableObjectGraph',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..pc<TrackableObjectGraph_TrackableObject>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'nodes',
$pb.PbFieldType.PM,
subBuilder: TrackableObjectGraph_TrackableObject.create)
..hasRequiredFields = false;
TrackableObjectGraph._() : super();
factory TrackableObjectGraph({
$core.Iterable<TrackableObjectGraph_TrackableObject>? nodes,
}) {
final _result = create();
if (nodes != null) {
_result.nodes.addAll(nodes);
}
return _result;
}
factory TrackableObjectGraph.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory TrackableObjectGraph.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
TrackableObjectGraph clone() =>
TrackableObjectGraph()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
TrackableObjectGraph copyWith(void Function(TrackableObjectGraph) updates) =>
super.copyWith((message) => updates(message as TrackableObjectGraph))
as TrackableObjectGraph; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static TrackableObjectGraph create() => TrackableObjectGraph._();
TrackableObjectGraph createEmptyInstance() => create();
static $pb.PbList<TrackableObjectGraph> createRepeated() =>
$pb.PbList<TrackableObjectGraph>();
@$core.pragma('dart2js:noInline')
static TrackableObjectGraph getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<TrackableObjectGraph>(create);
static TrackableObjectGraph? _defaultInstance;
@$pb.TagNumber(1)
$core.List<TrackableObjectGraph_TrackableObject> get nodes => $_getList(0);
}
class RegisteredSaver extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'RegisteredSaver',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..aOS(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'name')
..aOS(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'objectName')
..hasRequiredFields = false;
RegisteredSaver._() : super();
factory RegisteredSaver({
$core.String? name,
$core.String? objectName,
}) {
final _result = create();
if (name != null) {
_result.name = name;
}
if (objectName != null) {
_result.objectName = objectName;
}
return _result;
}
factory RegisteredSaver.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory RegisteredSaver.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
RegisteredSaver clone() => RegisteredSaver()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
RegisteredSaver copyWith(void Function(RegisteredSaver) updates) =>
super.copyWith((message) => updates(message as RegisteredSaver))
as RegisteredSaver; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static RegisteredSaver create() => RegisteredSaver._();
RegisteredSaver createEmptyInstance() => create();
static $pb.PbList<RegisteredSaver> createRepeated() =>
$pb.PbList<RegisteredSaver>();
@$core.pragma('dart2js:noInline')
static RegisteredSaver getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<RegisteredSaver>(create);
static RegisteredSaver? _defaultInstance;
@$pb.TagNumber(1)
$core.String get name => $_getSZ(0);
@$pb.TagNumber(1)
set name($core.String v) {
$_setString(0, v);
}
@$pb.TagNumber(1)
$core.bool hasName() => $_has(0);
@$pb.TagNumber(1)
void clearName() => clearField(1);
@$pb.TagNumber(2)
$core.String get objectName => $_getSZ(1);
@$pb.TagNumber(2)
set objectName($core.String v) {
$_setString(1, v);
}
@$pb.TagNumber(2)
$core.bool hasObjectName() => $_has(1);
@$pb.TagNumber(2)
void clearObjectName() => clearField(2);
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/protobuf/trackable_object_graph.pb.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/protobuf/trackable_object_graph.pb.dart",
"repo_id": "codelabs",
"token_count": 9994
} | 67 |
///
// Generated code. Do not modify.
// source: tensorflow_serving/apis/model.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/model.pbenum.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/model.pbenum.dart",
"repo_id": "codelabs",
"token_count": 116
} | 68 |
syntax = "proto3";
package tensorflow;
import "tensorflow/core/framework/tensor.proto";
import "tensorflow/core/framework/tensor_shape.proto";
import "tensorflow/core/framework/types.proto";
option cc_enable_arenas = true;
option java_outer_classname = "AttrValueProtos";
option java_multiple_files = true;
option java_package = "org.tensorflow.framework";
option go_package = "github.com/tensorflow/tensorflow/tensorflow/go/core/framework/attr_value_go_proto";
// Protocol buffer representing the value for an attr used to configure an Op.
// Comment indicates the corresponding attr type. Only the field matching the
// attr type may be filled.
message AttrValue {
// LINT.IfChange
message ListValue {
repeated bytes s = 2; // "list(string)"
repeated int64 i = 3 [packed = true]; // "list(int)"
repeated float f = 4 [packed = true]; // "list(float)"
repeated bool b = 5 [packed = true]; // "list(bool)"
repeated DataType type = 6 [packed = true]; // "list(type)"
repeated TensorShapeProto shape = 7; // "list(shape)"
repeated TensorProto tensor = 8; // "list(tensor)"
repeated NameAttrList func = 9; // "list(attr)"
}
// LINT.ThenChange(https://www.tensorflow.org/code/tensorflow/c/c_api.cc)
oneof value {
bytes s = 2; // "string"
int64 i = 3; // "int"
float f = 4; // "float"
bool b = 5; // "bool"
DataType type = 6; // "type"
TensorShapeProto shape = 7; // "shape"
TensorProto tensor = 8; // "tensor"
ListValue list = 1; // any "list(...)"
// "func" represents a function. func.name is a function's name or
// a primitive op's name. func.attr.first is the name of an attr
// defined for that function. func.attr.second is the value for
// that attr in the instantiation.
NameAttrList func = 10;
// This is a placeholder only used in nodes defined inside a
// function. It indicates the attr value will be supplied when
// the function is instantiated. For example, let us suppose a
// node "N" in function "FN". "N" has an attr "A" with value
// placeholder = "foo". When FN is instantiated with attr "foo"
// set to "bar", the instantiated node N's attr A will have been
// given the value "bar".
string placeholder = 9;
}
}
// A list of attr names and their values. The whole list is attached
// with a string name. E.g., MatMul[T=float].
message NameAttrList {
string name = 1;
map<string, AttrValue> attr = 2;
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/framework/attr_value.proto/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/framework/attr_value.proto",
"repo_id": "codelabs",
"token_count": 1015
} | 69 |
syntax = "proto3";
package tensorflow;
import "google/protobuf/wrappers.proto";
option cc_enable_arenas = true;
option go_package = "github.com/tensorflow/tensorflow/tensorflow/go/core/protobuf/for_core_protos_go_proto";
// A TensorBundle addition which saves extra information about the objects which
// own variables, allowing for more robust checkpoint loading into modified
// programs.
message TrackableObjectGraph {
message TrackableObject {
message ObjectReference {
// An index into `TrackableObjectGraph.nodes`, indicating the object
// being referenced.
int32 node_id = 1;
// A user-provided name for the edge.
string local_name = 2;
}
message SerializedTensor {
// A name for the Tensor. Simple variables have only one
// `SerializedTensor` named "VARIABLE_VALUE" by convention. This value may
// be restored on object creation as an optimization.
string name = 1;
// The full name of the variable/tensor, if applicable. Used to allow
// name-based loading of checkpoints which were saved using an
// object-based API. Should match the checkpoint key which would have been
// assigned by tf.train.Saver.
string full_name = 2;
// The generated name of the Tensor in the checkpoint.
string checkpoint_key = 3;
// Whether checkpoints should be considered as matching even without this
// value restored. Used for non-critical values which don't affect the
// TensorFlow graph, such as layer configurations.
bool optional_restore = 4;
}
message SlotVariableReference {
// An index into `TrackableObjectGraph.nodes`, indicating the
// variable object this slot was created for.
int32 original_variable_node_id = 1;
// The name of the slot (e.g. "m"/"v").
string slot_name = 2;
// An index into `TrackableObjectGraph.nodes`, indicating the
// `Object` with the value of the slot variable.
int32 slot_variable_node_id = 3;
}
// Objects which this object depends on.
repeated ObjectReference children = 1;
// Serialized data specific to this object.
repeated SerializedTensor attributes = 2;
// Slot variables owned by this object.
repeated SlotVariableReference slot_variables = 3;
// The registered saver used to save this object. If this saver is not
// present when loading the checkpoint, then loading will fail.
RegisteredSaver registered_saver = 4;
// Whether this object has checkpoint values or descendants with checkpoint
// values. This is computed at save time to avoid traversing the entire
// object graph proto when restoring (which also has to traverse the live
// object graph).
google.protobuf.BoolValue has_checkpoint_values = 5;
}
repeated TrackableObject nodes = 1;
}
message RegisteredSaver {
// The name of the registered saver/restore function.
string name = 1;
// Unique auto-generated name of the object.
string object_name = 2;
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/protobuf/trackable_object_graph.proto/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/protobuf/trackable_object_graph.proto",
"repo_id": "codelabs",
"token_count": 941
} | 70 |
{
"installed": {
"client_id": "CLIENT-ID",
"project_id": "PROJECT-ID",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_secret": "CLIENT-SECRET",
"redirect_uris": [
"http://localhost"
]
}
} | codelabs/tooling/claat_export_images/client_secret.json/0 | {
"file_path": "codelabs/tooling/claat_export_images/client_secret.json",
"repo_id": "codelabs",
"token_count": 217
} | 71 |
{
"body": {
"content": [
{
"endIndex": 1,
"sectionBreak": {
"sectionStyle": {
"columnSeparatorStyle": "NONE",
"contentDirection": "LEFT_TO_RIGHT",
"sectionType": "CONTINUOUS"
}
}
},
{
"endIndex": 37,
"paragraph": {
"elements": [
{
"endIndex": 37,
"startIndex": 1,
"textRun": {
"content": "Adding Google Maps to a Flutter app\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"headingId": "h.7sa4zxkhmsum",
"namedStyleType": "TITLE",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 1
},
{
"endIndex": 38,
"paragraph": {
"elements": [
{
"endIndex": 38,
"startIndex": 37,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 37
},
{
"endIndex": 68,
"paragraph": {
"elements": [
{
"endIndex": 67,
"startIndex": 38,
"textRun": {
"content": "Last update: 6/13/2020, brett",
"textStyle": {
"fontSize": {
"magnitude": 8.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 68,
"startIndex": 67,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "END",
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 38
},
{
"endIndex": 561,
"startIndex": 68,
"table": {
"columns": 2,
"rows": 7,
"tableRows": [
{
"endIndex": 242,
"startIndex": 69,
"tableCells": [
{
"content": [
{
"endIndex": 79,
"paragraph": {
"elements": [
{
"endIndex": 79,
"startIndex": 71,
"textRun": {
"content": "Summary\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 71
}
],
"endIndex": 79,
"startIndex": 70,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 242,
"paragraph": {
"elements": [
{
"endIndex": 242,
"startIndex": 80,
"textRun": {
"content": "In this codelab, you’ll build a Google Maps experience using the Flutter mobile app SDK for crafting high-quality native experiences on iOS, Android and the web.\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 80
}
],
"endIndex": 242,
"startIndex": 79,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 281,
"startIndex": 242,
"tableCells": [
{
"content": [
{
"endIndex": 248,
"paragraph": {
"elements": [
{
"endIndex": 248,
"startIndex": 244,
"textRun": {
"content": "URL\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 244
}
],
"endIndex": 248,
"startIndex": 243,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 281,
"paragraph": {
"elements": [
{
"endIndex": 281,
"startIndex": 249,
"textRun": {
"content": "codelabs/google-maps-in-flutter\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 249
}
],
"endIndex": 281,
"startIndex": 248,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 314,
"startIndex": 281,
"tableCells": [
{
"content": [
{
"endIndex": 292,
"paragraph": {
"elements": [
{
"endIndex": 292,
"startIndex": 283,
"textRun": {
"content": "Category\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 283
}
],
"endIndex": 292,
"startIndex": 282,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 314,
"paragraph": {
"elements": [
{
"endIndex": 314,
"startIndex": 293,
"textRun": {
"content": "flutter,mapsplatform\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 293
}
],
"endIndex": 314,
"startIndex": 292,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 437,
"startIndex": 314,
"tableCells": [
{
"content": [
{
"endIndex": 325,
"paragraph": {
"elements": [
{
"endIndex": 325,
"startIndex": 316,
"textRun": {
"content": "Keywords\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 316
}
],
"endIndex": 325,
"startIndex": 315,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 437,
"paragraph": {
"elements": [
{
"endIndex": 437,
"startIndex": 326,
"textRun": {
"content": "product:Flutter,product:GoogleMapsPlatform,docType:Codelab,language:DartLang,skill:Beginner,skill:Introductory\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 326
}
],
"endIndex": 437,
"startIndex": 325,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 457,
"startIndex": 437,
"tableCells": [
{
"content": [
{
"endIndex": 446,
"paragraph": {
"elements": [
{
"endIndex": 446,
"startIndex": 439,
"textRun": {
"content": "Status\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 439
}
],
"endIndex": 446,
"startIndex": 438,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 457,
"paragraph": {
"elements": [
{
"endIndex": 457,
"startIndex": 447,
"textRun": {
"content": "Published\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 447
}
],
"endIndex": 457,
"startIndex": 446,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 538,
"startIndex": 457,
"tableCells": [
{
"content": [
{
"endIndex": 473,
"paragraph": {
"elements": [
{
"endIndex": 473,
"startIndex": 459,
"textRun": {
"content": "Feedback Link\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 459
}
],
"endIndex": 473,
"startIndex": 458,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 538,
"paragraph": {
"elements": [
{
"endIndex": 538,
"startIndex": 474,
"textRun": {
"content": "https://github.com/googlecodelabs/google-maps-in-flutter/issues\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 474
}
],
"endIndex": 538,
"startIndex": 473,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
},
{
"endIndex": 560,
"startIndex": 538,
"tableCells": [
{
"content": [
{
"endIndex": 547,
"paragraph": {
"elements": [
{
"endIndex": 547,
"startIndex": 540,
"textRun": {
"content": "Author\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 540
}
],
"endIndex": 547,
"startIndex": 539,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.9529412,
"red": 0.9529412
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 560,
"paragraph": {
"elements": [
{
"endIndex": 560,
"startIndex": 548,
"textRun": {
"content": "brettmorgan\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 548
}
],
"endIndex": 560,
"startIndex": 547,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"width": {
"magnitude": 101.25,
"unit": "PT"
},
"widthType": "FIXED_WIDTH"
},
{
"width": {
"magnitude": 366.75,
"unit": "PT"
},
"widthType": "FIXED_WIDTH"
}
]
}
}
},
{
"endIndex": 562,
"paragraph": {
"elements": [
{
"endIndex": 562,
"startIndex": 561,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 561
},
{
"endIndex": 563,
"paragraph": {
"elements": [
{
"endIndex": 563,
"startIndex": 562,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 562
},
{
"endIndex": 1349,
"startIndex": 563,
"tableOfContents": {
"content": [
{
"endIndex": 577,
"paragraph": {
"elements": [
{
"endIndex": 576,
"startIndex": 564,
"textRun": {
"content": "Introduction",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.ok7k5uux6"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 577,
"startIndex": 576,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.ok7k5uux6"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 564
},
{
"endIndex": 595,
"paragraph": {
"elements": [
{
"endIndex": 594,
"startIndex": 577,
"textRun": {
"content": "What you’ll build",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.21yzqg98x7h6"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 595,
"startIndex": 594,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.21yzqg98x7h6"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 577
},
{
"endIndex": 612,
"paragraph": {
"elements": [
{
"endIndex": 611,
"startIndex": 595,
"textRun": {
"content": "What is Flutter?",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.sew7rv6ox3j6"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 612,
"startIndex": 611,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.sew7rv6ox3j6"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 595
},
{
"endIndex": 630,
"paragraph": {
"elements": [
{
"endIndex": 629,
"startIndex": 612,
"textRun": {
"content": "What you’ll learn",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.hs6hf8vnv2d6"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 630,
"startIndex": 629,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.hs6hf8vnv2d6"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 612
},
{
"endIndex": 678,
"paragraph": {
"elements": [
{
"endIndex": 677,
"startIndex": 630,
"textRun": {
"content": "What would you like to learn from this codelab?",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.b7nxsg514qu3"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 678,
"startIndex": 677,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.b7nxsg514qu3"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 54.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 630
},
{
"endIndex": 710,
"paragraph": {
"elements": [
{
"endIndex": 709,
"startIndex": 678,
"textRun": {
"content": "Set up your Flutter environment",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.s4w3ehenj8fg"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 710,
"startIndex": 709,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.s4w3ehenj8fg"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 678
},
{
"endIndex": 726,
"paragraph": {
"elements": [
{
"endIndex": 725,
"startIndex": 710,
"textRun": {
"content": "Getting started",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.bwo0af2iwk90"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 726,
"startIndex": 725,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.bwo0af2iwk90"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 710
},
{
"endIndex": 755,
"paragraph": {
"elements": [
{
"endIndex": 754,
"startIndex": 726,
"textRun": {
"content": "Getting started with Flutter",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.sflrq0mndtt9"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 755,
"startIndex": 754,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.sflrq0mndtt9"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 726
},
{
"endIndex": 805,
"paragraph": {
"elements": [
{
"endIndex": 804,
"startIndex": 755,
"textRun": {
"content": "Adding Google Maps Flutter plugin as a dependency",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.qnhfwr145a0q"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 805,
"startIndex": 804,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.qnhfwr145a0q"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 755
},
{
"endIndex": 830,
"paragraph": {
"elements": [
{
"endIndex": 829,
"startIndex": 805,
"textRun": {
"content": "Configuring iOS platform",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.mqcx88xuw5gw"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 830,
"startIndex": 829,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.mqcx88xuw5gw"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 805
},
{
"endIndex": 842,
"paragraph": {
"elements": [
{
"endIndex": 841,
"startIndex": 830,
"textRun": {
"content": "ios/Podfile",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.ybyba458ho0a"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 842,
"startIndex": 841,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.ybyba458ho0a"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 830
},
{
"endIndex": 869,
"paragraph": {
"elements": [
{
"endIndex": 868,
"startIndex": 842,
"textRun": {
"content": "Configuring Android minSDK",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.p7onrogu5vjj"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 869,
"startIndex": 868,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.p7onrogu5vjj"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 842
},
{
"endIndex": 894,
"paragraph": {
"elements": [
{
"endIndex": 893,
"startIndex": 869,
"textRun": {
"content": "android/app/build.gradle",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.slg6aay3y610"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 894,
"startIndex": 893,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.slg6aay3y610"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 869
},
{
"endIndex": 924,
"paragraph": {
"elements": [
{
"endIndex": 923,
"startIndex": 894,
"textRun": {
"content": "Adding Google Maps to the app",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.btmxwf909kks"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 924,
"startIndex": 923,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.btmxwf909kks"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 894
},
{
"endIndex": 952,
"paragraph": {
"elements": [
{
"endIndex": 951,
"startIndex": 924,
"textRun": {
"content": "It’s all about the API keys",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.en66mhmr1ijb"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 952,
"startIndex": 951,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.en66mhmr1ijb"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 924
},
{
"endIndex": 989,
"paragraph": {
"elements": [
{
"endIndex": 988,
"startIndex": 952,
"textRun": {
"content": "Adding an API key for an Android app",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.434ea4sutt6b"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 989,
"startIndex": 988,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.434ea4sutt6b"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 952
},
{
"endIndex": 1030,
"paragraph": {
"elements": [
{
"endIndex": 1029,
"startIndex": 989,
"textRun": {
"content": "android/app/src/main/AndroidManifest.xml",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.o4cuz5mt8mgq"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1030,
"startIndex": 1029,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.o4cuz5mt8mgq"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 989
},
{
"endIndex": 1063,
"paragraph": {
"elements": [
{
"endIndex": 1062,
"startIndex": 1030,
"textRun": {
"content": "Adding an API key for an iOS app",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.rwumwtdz8sbu"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1063,
"startIndex": 1062,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.rwumwtdz8sbu"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1030
},
{
"endIndex": 1092,
"paragraph": {
"elements": [
{
"endIndex": 1091,
"startIndex": 1063,
"textRun": {
"content": "ios/Runner/AppDelegate.swift",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.anteseqrbtav"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1092,
"startIndex": 1091,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.anteseqrbtav"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1063
},
{
"endIndex": 1124,
"paragraph": {
"elements": [
{
"endIndex": 1123,
"startIndex": 1092,
"textRun": {
"content": "Adding an API key for a Web app",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.5yc7m5vpgm3a"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1124,
"startIndex": 1123,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.5yc7m5vpgm3a"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1092
},
{
"endIndex": 1139,
"paragraph": {
"elements": [
{
"endIndex": 1138,
"startIndex": 1124,
"textRun": {
"content": "web/index.html",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.5qlnpoq6oucx"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1139,
"startIndex": 1138,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.5qlnpoq6oucx"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1124
},
{
"endIndex": 1167,
"paragraph": {
"elements": [
{
"endIndex": 1166,
"startIndex": 1139,
"textRun": {
"content": "Putting a map on the screen",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.siyd9f71otj"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1167,
"startIndex": 1166,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.siyd9f71otj"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1139
},
{
"endIndex": 1181,
"paragraph": {
"elements": [
{
"endIndex": 1180,
"startIndex": 1167,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.aqw5fitml1t2"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1181,
"startIndex": 1180,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.aqw5fitml1t2"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1167
},
{
"endIndex": 1197,
"paragraph": {
"elements": [
{
"endIndex": 1196,
"startIndex": 1181,
"textRun": {
"content": "Running the app",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.g24cz77tf7tj"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1197,
"startIndex": 1196,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.g24cz77tf7tj"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1181
},
{
"endIndex": 1219,
"paragraph": {
"elements": [
{
"endIndex": 1218,
"startIndex": 1197,
"textRun": {
"content": "Put Google on the Map",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.c60hsrd97hl2"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1219,
"startIndex": 1218,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.c60hsrd97hl2"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1197
},
{
"endIndex": 1253,
"paragraph": {
"elements": [
{
"endIndex": 1252,
"startIndex": 1219,
"textRun": {
"content": "Parsing JSON with code generation",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.lrs79x3jn1mo"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1253,
"startIndex": 1252,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.lrs79x3jn1mo"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1219
},
{
"endIndex": 1276,
"paragraph": {
"elements": [
{
"endIndex": 1275,
"startIndex": 1253,
"textRun": {
"content": "lib/src/locations.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.vcffge4pgdix"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1276,
"startIndex": 1275,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.vcffge4pgdix"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1253
},
{
"endIndex": 1289,
"paragraph": {
"elements": [
{
"endIndex": 1288,
"startIndex": 1276,
"textRun": {
"content": "pubspec.yaml",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.z6mljexlaggc"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1289,
"startIndex": 1288,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.z6mljexlaggc"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1276
},
{
"endIndex": 1303,
"paragraph": {
"elements": [
{
"endIndex": 1302,
"startIndex": 1289,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.tkosencotov2"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1303,
"startIndex": 1302,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.tkosencotov2"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1289
},
{
"endIndex": 1314,
"paragraph": {
"elements": [
{
"endIndex": 1313,
"startIndex": 1303,
"textRun": {
"content": "Next steps",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.wyjmgdlwi2kp"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1314,
"startIndex": 1313,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.wyjmgdlwi2kp"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1303
},
{
"endIndex": 1331,
"paragraph": {
"elements": [
{
"endIndex": 1330,
"startIndex": 1314,
"textRun": {
"content": "Congratulations!",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.4w8rovwn8ql"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1331,
"startIndex": 1330,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.4w8rovwn8ql"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1314
},
{
"endIndex": 1348,
"paragraph": {
"elements": [
{
"endIndex": 1347,
"startIndex": 1331,
"textRun": {
"content": "Other next steps",
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"italic": false,
"link": {
"headingId": "h.8ahw5cvmt2v7"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1348,
"startIndex": 1347,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.8ahw5cvmt2v7"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 18.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
}
}
},
"startIndex": 1331
}
]
}
},
{
"endIndex": 1350,
"paragraph": {
"elements": [
{
"endIndex": 1350,
"startIndex": 1349,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 1349
},
{
"endIndex": 1352,
"paragraph": {
"elements": [
{
"endIndex": 1351,
"horizontalRule": {
"textStyle": {}
},
"startIndex": 1350
},
{
"endIndex": 1352,
"startIndex": 1351,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 1350
},
{
"endIndex": 1353,
"paragraph": {
"elements": [
{
"endIndex": 1353,
"startIndex": 1352,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Verdana",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 1352
},
{
"endIndex": 1366,
"paragraph": {
"elements": [
{
"endIndex": 1366,
"startIndex": 1353,
"textRun": {
"content": "Introduction\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"headingId": "h.ok7k5uux6",
"namedStyleType": "HEADING_1",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 1353
},
{
"endIndex": 1481,
"paragraph": {
"elements": [
{
"endIndex": 1481,
"startIndex": 1366,
"textRun": {
"content": "Flutter is Google’s mobile app SDK for crafting high-quality native experiences on iOS and Android in record time.\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2901961,
"green": 0.2901961,
"red": 0.2901961
}
}
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 1366
},
{
"endIndex": 1482,
"paragraph": {
"elements": [
{
"endIndex": 1482,
"startIndex": 1481,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2901961,
"green": 0.2901961,
"red": 0.2901961
}
}
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 1481
},
{
"endIndex": 1867,
"paragraph": {
"elements": [
{
"endIndex": 1491,
"startIndex": 1482,
"textRun": {
"content": "With the ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2901961,
"green": 0.2901961,
"red": 0.2901961
}
}
}
}
}
},
{
"endIndex": 1517,
"startIndex": 1491,
"textRun": {
"content": "Google Maps Flutter plugin",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dartlang.org/packages/google_maps_flutter"
},
"underline": true
}
}
},
{
"endIndex": 1518,
"startIndex": 1517,
"textRun": {
"content": ",",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2901961,
"green": 0.2901961,
"red": 0.2901961
}
}
}
}
}
},
{
"endIndex": 1866,
"startIndex": 1518,
"textRun": {
"content": " you can add maps based on Google maps data to your application. The plugin automatically handles access to the Google Maps servers, map display, and response to user gestures such as clicks and drags. You can also add markers to your map. These objects provide additional information for map locations, and allow the user to interact with the map.",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2901961,
"green": 0.2901961,
"red": 0.2901961
}
}
}
}
}
},
{
"endIndex": 1867,
"startIndex": 1866,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 1482
},
{
"endIndex": 1885,
"paragraph": {
"elements": [
{
"endIndex": 1885,
"startIndex": 1867,
"textRun": {
"content": "What you’ll build\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.21yzqg98x7h6",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 1867
},
{
"endIndex": 1886,
"paragraph": {
"elements": [
{
"endIndex": 1886,
"startIndex": 1885,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 1885
},
{
"endIndex": 2096,
"startIndex": 1886,
"table": {
"columns": 2,
"rows": 1,
"tableRows": [
{
"endIndex": 2095,
"startIndex": 1887,
"tableCells": [
{
"content": [
{
"endIndex": 1993,
"paragraph": {
"elements": [
{
"endIndex": 1993,
"startIndex": 1889,
"textRun": {
"content": "In this codelab, you'll build a mobile app featuring a Google Map using the Flutter SDK. Your app will:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 163.63637,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 1889
},
{
"endIndex": 2014,
"paragraph": {
"bullet": {
"listId": "kix.k0g7fgw2pxb9",
"textStyle": {}
},
"elements": [
{
"endIndex": 2014,
"startIndex": 1993,
"textRun": {
"content": "Display a Google Map\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 1993
},
{
"endIndex": 2051,
"paragraph": {
"bullet": {
"listId": "kix.k0g7fgw2pxb9",
"textStyle": {}
},
"elements": [
{
"endIndex": 2051,
"startIndex": 2014,
"textRun": {
"content": "Retrieve map data from a web service\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2014
},
{
"endIndex": 2091,
"paragraph": {
"bullet": {
"listId": "kix.k0g7fgw2pxb9",
"textStyle": {}
},
"elements": [
{
"endIndex": 2091,
"startIndex": 2051,
"textRun": {
"content": "Display this data as markers on the Map\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2051
},
{
"endIndex": 2092,
"paragraph": {
"elements": [
{
"endIndex": 2092,
"startIndex": 2091,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 2091
}
],
"endIndex": 2092,
"startIndex": 1888,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 2095,
"paragraph": {
"elements": [
{
"endIndex": 2094,
"inlineObjectElement": {
"inlineObjectId": "kix.1p75kdspyuxq",
"textStyle": {}
},
"startIndex": 2093
},
{
"endIndex": 2095,
"startIndex": 2094,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2093
}
],
"endIndex": 2095,
"startIndex": 2092,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
},
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 2097,
"paragraph": {
"elements": [
{
"endIndex": 2097,
"startIndex": 2096,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 2096
},
{
"endIndex": 2114,
"paragraph": {
"elements": [
{
"endIndex": 2114,
"startIndex": 2097,
"textRun": {
"content": "What is Flutter?\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"headingId": "h.sew7rv6ox3j6",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 2097
},
{
"endIndex": 2115,
"paragraph": {
"elements": [
{
"endIndex": 2115,
"startIndex": 2114,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 2114
},
{
"endIndex": 2152,
"paragraph": {
"elements": [
{
"endIndex": 2152,
"startIndex": 2115,
"textRun": {
"content": "Flutter has three core capabilities.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 163.63637,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2115
},
{
"endIndex": 2251,
"paragraph": {
"bullet": {
"listId": "kix.6f05htw8422z",
"textStyle": {}
},
"elements": [
{
"endIndex": 2167,
"startIndex": 2152,
"textRun": {
"content": "Fast to develop",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2168,
"startIndex": 2167,
"textRun": {
"content": ":",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2251,
"startIndex": 2168,
"textRun": {
"content": " Build your Android and iOS applications in milliseconds with Stateful Hot Reload.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 150.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2152
},
{
"endIndex": 2343,
"paragraph": {
"bullet": {
"listId": "kix.6f05htw8422z",
"textStyle": {}
},
"elements": [
{
"endIndex": 2274,
"startIndex": 2251,
"textRun": {
"content": "Expressive and flexible",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2275,
"startIndex": 2274,
"textRun": {
"content": ":",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2276,
"startIndex": 2275,
"textRun": {
"content": " ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2341,
"startIndex": 2276,
"textRun": {
"content": "Quickly ship features with a focus on native end-user experiences",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2901961,
"green": 0.2901961,
"red": 0.2901961
}
}
}
}
}
},
{
"endIndex": 2343,
"startIndex": 2341,
"textRun": {
"content": ".\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 150.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2251
},
{
"endIndex": 2539,
"paragraph": {
"bullet": {
"listId": "kix.6f05htw8422z",
"textStyle": {}
},
"elements": [
{
"endIndex": 2385,
"startIndex": 2343,
"textRun": {
"content": "Native performance on both iOS and Android",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2386,
"startIndex": 2385,
"textRun": {
"content": ":",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2387,
"startIndex": 2386,
"textRun": {
"content": " ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2537,
"startIndex": 2387,
"textRun": {
"content": "Flutter’s widgets incorporate all critical platform differences — such as scrolling, navigation, icons, and fonts — to provide full native performance",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2901961,
"green": 0.2901961,
"red": 0.2901961
}
}
}
}
}
},
{
"endIndex": 2539,
"startIndex": 2537,
"textRun": {
"content": ".\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 150.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2343
},
{
"endIndex": 2556,
"paragraph": {
"elements": [
{
"endIndex": 2556,
"startIndex": 2539,
"textRun": {
"content": "Google Maps has:\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 163.63637,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2539
},
{
"endIndex": 2663,
"paragraph": {
"bullet": {
"listId": "kix.6f05htw8422z",
"textStyle": {}
},
"elements": [
{
"endIndex": 2581,
"startIndex": 2556,
"textRun": {
"content": "99% coverage of the world",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2582,
"startIndex": 2581,
"textRun": {
"content": ":",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2663,
"startIndex": 2582,
"textRun": {
"content": " Build with reliable, comprehensive data for over 200 countries and territories.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 150.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2556
},
{
"endIndex": 2740,
"paragraph": {
"bullet": {
"listId": "kix.6f05htw8422z",
"textStyle": {}
},
"elements": [
{
"endIndex": 2687,
"startIndex": 2663,
"textRun": {
"content": "25 million updates daily",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2688,
"startIndex": 2687,
"textRun": {
"content": ":",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2689,
"startIndex": 2688,
"textRun": {
"content": " ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2738,
"startIndex": 2689,
"textRun": {
"content": "Count on accurate, real-time location information",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2901961,
"green": 0.2901961,
"red": 0.2901961
}
}
}
}
}
},
{
"endIndex": 2740,
"startIndex": 2738,
"textRun": {
"content": ".\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 150.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2663
},
{
"endIndex": 2830,
"paragraph": {
"bullet": {
"listId": "kix.6f05htw8422z",
"textStyle": {}
},
"elements": [
{
"endIndex": 2770,
"startIndex": 2740,
"textRun": {
"content": "1 billion monthly active users",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2771,
"startIndex": 2770,
"textRun": {
"content": ":",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2772,
"startIndex": 2771,
"textRun": {
"content": " ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2828,
"startIndex": 2772,
"textRun": {
"content": "Scale confidently, backed by Google Maps’ infrastructure",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2901961,
"green": 0.2901961,
"red": 0.2901961
}
}
}
}
}
},
{
"endIndex": 2830,
"startIndex": 2828,
"textRun": {
"content": ".\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 150.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2740
},
{
"endIndex": 2831,
"paragraph": {
"elements": [
{
"endIndex": 2831,
"startIndex": 2830,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 2830
},
{
"endIndex": 2939,
"paragraph": {
"elements": [
{
"endIndex": 2938,
"startIndex": 2831,
"textRun": {
"content": "This codelab walks you through creating a Google Maps experience in a Flutter app for both iOS and Android.",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2939,
"startIndex": 2938,
"textRun": {
"content": "\n",
"textStyle": {
"bold": false
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 163.63637,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2831
},
{
"endIndex": 2940,
"paragraph": {
"elements": [
{
"endIndex": 2940,
"startIndex": 2939,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 2939
},
{
"endIndex": 2958,
"paragraph": {
"elements": [
{
"endIndex": 2958,
"startIndex": 2940,
"textRun": {
"content": "What you’ll learn\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"headingId": "h.hs6hf8vnv2d6",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 2940
},
{
"endIndex": 2959,
"paragraph": {
"elements": [
{
"endIndex": 2959,
"startIndex": 2958,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 2958
},
{
"endIndex": 3000,
"paragraph": {
"bullet": {
"listId": "kix.qx7bo6w9dag0",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 3000,
"startIndex": 2959,
"textRun": {
"content": "How to create a new Flutter application.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 150.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2959
},
{
"endIndex": 3047,
"paragraph": {
"bullet": {
"listId": "kix.qx7bo6w9dag0",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 3047,
"startIndex": 3000,
"textRun": {
"content": "How to configure a Google Maps Flutter plugin.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 150.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3000
},
{
"endIndex": 3116,
"paragraph": {
"bullet": {
"listId": "kix.qx7bo6w9dag0",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 3116,
"startIndex": 3047,
"textRun": {
"content": "How to add Markers to a map, using location data from a web service.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 150.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3047
},
{
"endIndex": 3284,
"paragraph": {
"elements": [
{
"endIndex": 3284,
"startIndex": 3116,
"textRun": {
"content": "This codelab focuses on adding a Google map to a Flutter app. Non-relevant concepts and code blocks are glossed over and are provided for you to simply copy and paste.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 3116
},
{
"endIndex": 3285,
"paragraph": {
"elements": [
{
"endIndex": 3285,
"startIndex": 3284,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 3284
},
{
"endIndex": 3286,
"paragraph": {
"elements": [
{
"endIndex": 3286,
"startIndex": 3285,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3285
},
{
"endIndex": 3552,
"startIndex": 3286,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 3551,
"startIndex": 3287,
"tableCells": [
{
"content": [
{
"endIndex": 3337,
"paragraph": {
"elements": [
{
"endIndex": 3337,
"startIndex": 3289,
"textRun": {
"content": "What would you like to learn from this codelab?\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.b7nxsg514qu3",
"namedStyleType": "HEADING_4",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 14.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 4.0,
"unit": "PT"
}
}
},
"startIndex": 3289
},
{
"endIndex": 3387,
"paragraph": {
"bullet": {
"listId": "kix.lwtrs6k81vg0",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 3387,
"startIndex": 3337,
"textRun": {
"content": "I'm new to the topic, and I want a good overview.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3337
},
{
"endIndex": 3446,
"paragraph": {
"bullet": {
"listId": "kix.lwtrs6k81vg0",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 3446,
"startIndex": 3387,
"textRun": {
"content": "I know something about this topic, but I want a refresher.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3387
},
{
"endIndex": 3497,
"paragraph": {
"bullet": {
"listId": "kix.lwtrs6k81vg0",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 3497,
"startIndex": 3446,
"textRun": {
"content": "I'm looking for example code to use in my project.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3446
},
{
"endIndex": 3551,
"paragraph": {
"bullet": {
"listId": "kix.lwtrs6k81vg0",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 3551,
"startIndex": 3497,
"textRun": {
"content": "I'm looking for an explanation of something specific.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3497
}
],
"endIndex": 3551,
"startIndex": 3288,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.9529412,
"green": 0.8862745,
"red": 0.8117647
}
}
},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 3553,
"paragraph": {
"elements": [
{
"endIndex": 3553,
"startIndex": 3552,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 3552
},
{
"endIndex": 3555,
"paragraph": {
"elements": [
{
"endIndex": 3554,
"horizontalRule": {
"textStyle": {}
},
"startIndex": 3553
},
{
"endIndex": 3555,
"startIndex": 3554,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 3553
},
{
"endIndex": 3587,
"paragraph": {
"elements": [
{
"endIndex": 3587,
"startIndex": 3555,
"textRun": {
"content": "Set up your Flutter environment\n",
"textStyle": {
"fontSize": {
"magnitude": 18.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.s4w3ehenj8fg",
"namedStyleType": "HEADING_1",
"pageBreakBefore": false
}
},
"startIndex": 3555
},
{
"endIndex": 3603,
"paragraph": {
"elements": [
{
"endIndex": 3603,
"startIndex": 3587,
"textRun": {
"content": "Duration: 10:00\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3587
},
{
"endIndex": 3620,
"paragraph": {
"elements": [
{
"endIndex": 3619,
"startIndex": 3603,
"textRun": {
"content": "Environment: web",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3620,
"startIndex": 3619,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3603
},
{
"endIndex": 3621,
"paragraph": {
"elements": [
{
"endIndex": 3621,
"startIndex": 3620,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3620
},
{
"endIndex": 3783,
"paragraph": {
"elements": [
{
"endIndex": 3679,
"startIndex": 3621,
"textRun": {
"content": "You need two pieces of software to complete this lab: the ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3690,
"startIndex": 3679,
"textRun": {
"content": "Flutter SDK",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://flutter.io/get-started/install/"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3696,
"startIndex": 3690,
"textRun": {
"content": ", and ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3705,
"startIndex": 3696,
"textRun": {
"content": "an editor",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://flutter.io/get-started/editor/"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3783,
"startIndex": 3705,
"textRun": {
"content": ". This codelab assumes Android Studio, but you can use your preferred editor.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3621
},
{
"endIndex": 3784,
"paragraph": {
"elements": [
{
"endIndex": 3784,
"startIndex": 3783,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3783
},
{
"endIndex": 3845,
"paragraph": {
"elements": [
{
"endIndex": 3845,
"startIndex": 3784,
"textRun": {
"content": "You can run this codelab using any of the following devices:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3784
},
{
"endIndex": 3846,
"paragraph": {
"elements": [
{
"endIndex": 3846,
"startIndex": 3845,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3845
},
{
"endIndex": 3935,
"paragraph": {
"bullet": {
"listId": "kix.yadiw4lw6xu2",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 3935,
"startIndex": 3846,
"textRun": {
"content": "A physical device (Android or iOS) connected to your computer and set to developer mode.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3846
},
{
"endIndex": 3990,
"paragraph": {
"bullet": {
"listId": "kix.yadiw4lw6xu2",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 3965,
"startIndex": 3935,
"textRun": {
"content": "The iOS simulator. (Requires ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3987,
"startIndex": 3965,
"textRun": {
"content": "installing Xcode tools",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://apps.apple.com/us/app/xcode/id497799835"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3990,
"startIndex": 3987,
"textRun": {
"content": ".)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3935
},
{
"endIndex": 4048,
"paragraph": {
"bullet": {
"listId": "kix.yadiw4lw6xu2",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 4031,
"startIndex": 3990,
"textRun": {
"content": "The Android emulator. (Requires setup in ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 4045,
"startIndex": 4031,
"textRun": {
"content": "Android Studio",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://developer.android.com/studio/install"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 4048,
"startIndex": 4045,
"textRun": {
"content": ".)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3990
},
{
"endIndex": 4049,
"paragraph": {
"elements": [
{
"endIndex": 4049,
"startIndex": 4048,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 4048
},
{
"endIndex": 4065,
"paragraph": {
"elements": [
{
"endIndex": 4065,
"startIndex": 4049,
"textRun": {
"content": "Getting started\n",
"textStyle": {
"fontSize": {
"magnitude": 18.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"headingId": "h.bwo0af2iwk90",
"namedStyleType": "HEADING_1",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 4049
},
{
"endIndex": 4080,
"paragraph": {
"elements": [
{
"endIndex": 4079,
"startIndex": 4065,
"textRun": {
"content": "Duration: 5:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 4080,
"startIndex": 4079,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 4065
},
{
"endIndex": 4081,
"paragraph": {
"elements": [
{
"endIndex": 4081,
"startIndex": 4080,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 4080
},
{
"endIndex": 4110,
"paragraph": {
"elements": [
{
"endIndex": 4110,
"startIndex": 4081,
"textRun": {
"content": "Getting started with Flutter\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"headingId": "h.sflrq0mndtt9",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 4081
},
{
"endIndex": 4268,
"paragraph": {
"elements": [
{
"endIndex": 4268,
"startIndex": 4110,
"textRun": {
"content": "The easiest way to get started with Flutter is to use the flutter command line tool to create all the required code for a simple getting started experience. \n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 4110
},
{
"endIndex": 4269,
"paragraph": {
"elements": [
{
"endIndex": 4269,
"startIndex": 4268,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 4268
},
{
"endIndex": 4638,
"startIndex": 4269,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 4637,
"startIndex": 4270,
"tableCells": [
{
"content": [
{
"endIndex": 4340,
"paragraph": {
"elements": [
{
"endIndex": 4340,
"startIndex": 4272,
"textRun": {
"content": "$ flutter create google_maps_in_flutter --platforms android,ios,web\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4272
},
{
"endIndex": 4383,
"paragraph": {
"elements": [
{
"endIndex": 4383,
"startIndex": 4340,
"textRun": {
"content": "Creating project google_maps_in_flutter...\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4340
},
{
"endIndex": 4456,
"paragraph": {
"elements": [
{
"endIndex": 4456,
"startIndex": 4383,
"textRun": {
"content": "Running \"flutter pub get\" in google_maps_in_flutter... 1,612ms\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4383
},
{
"endIndex": 4472,
"paragraph": {
"elements": [
{
"endIndex": 4472,
"startIndex": 4456,
"textRun": {
"content": "Wrote 80 files.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4456
},
{
"endIndex": 4473,
"paragraph": {
"elements": [
{
"endIndex": 4473,
"startIndex": 4472,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4472
},
{
"endIndex": 4483,
"paragraph": {
"elements": [
{
"endIndex": 4483,
"startIndex": 4473,
"textRun": {
"content": "All done!\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4473
},
{
"endIndex": 4523,
"paragraph": {
"elements": [
{
"endIndex": 4523,
"startIndex": 4483,
"textRun": {
"content": "In order to run your application, type:\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4483
},
{
"endIndex": 4524,
"paragraph": {
"elements": [
{
"endIndex": 4524,
"startIndex": 4523,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4523
},
{
"endIndex": 4554,
"paragraph": {
"elements": [
{
"endIndex": 4554,
"startIndex": 4524,
"textRun": {
"content": " $ cd google_maps_in_flutter\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4524
},
{
"endIndex": 4570,
"paragraph": {
"elements": [
{
"endIndex": 4570,
"startIndex": 4554,
"textRun": {
"content": " $ flutter run\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4554
},
{
"endIndex": 4571,
"paragraph": {
"elements": [
{
"endIndex": 4571,
"startIndex": 4570,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4570
},
{
"endIndex": 4637,
"paragraph": {
"elements": [
{
"endIndex": 4637,
"startIndex": 4571,
"textRun": {
"content": "Your application code is in google_maps_in_flutter/lib/main.dart.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4571
}
],
"endIndex": 4637,
"startIndex": 4271,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 4639,
"paragraph": {
"elements": [
{
"endIndex": 4639,
"startIndex": 4638,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 4638
},
{
"endIndex": 4689,
"paragraph": {
"elements": [
{
"endIndex": 4689,
"startIndex": 4639,
"textRun": {
"content": "Adding Google Maps Flutter plugin as a dependency\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"headingId": "h.qnhfwr145a0q",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 4639
},
{
"endIndex": 4885,
"paragraph": {
"elements": [
{
"endIndex": 4749,
"startIndex": 4689,
"textRun": {
"content": "Adding additional capability to a Flutter app is easy using ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 4761,
"startIndex": 4749,
"textRun": {
"content": "Pub packages",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dartlang.org/flutter"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 4797,
"startIndex": 4761,
"textRun": {
"content": ". In this codelab you introduce the ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 4823,
"startIndex": 4797,
"textRun": {
"content": "Google Maps Flutter plugin",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dartlang.org/packages/google_maps_flutter"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 4885,
"startIndex": 4823,
"textRun": {
"content": " by running the following command from the project directory.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 4689
},
{
"endIndex": 4886,
"paragraph": {
"elements": [
{
"endIndex": 4886,
"startIndex": 4885,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.3eliymc4sjl0",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 4885
},
{
"endIndex": 5622,
"startIndex": 4886,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 5621,
"startIndex": 4887,
"tableCells": [
{
"content": [
{
"endIndex": 4917,
"paragraph": {
"elements": [
{
"endIndex": 4917,
"startIndex": 4889,
"textRun": {
"content": "$ cd google_maps_in_flutter\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4889
},
{
"endIndex": 4955,
"paragraph": {
"elements": [
{
"endIndex": 4955,
"startIndex": 4917,
"textRun": {
"content": "$ flutter pub add google_maps_flutter\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4917
},
{
"endIndex": 4981,
"paragraph": {
"elements": [
{
"endIndex": 4981,
"startIndex": 4955,
"textRun": {
"content": "Resolving dependencies...\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4955
},
{
"endIndex": 5013,
"paragraph": {
"elements": [
{
"endIndex": 5013,
"startIndex": 4981,
"textRun": {
"content": " async 2.8.2 (2.9.0 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4981
},
{
"endIndex": 5050,
"paragraph": {
"elements": [
{
"endIndex": 5050,
"startIndex": 5013,
"textRun": {
"content": " characters 1.2.0 (1.2.1 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5013
},
{
"endIndex": 5082,
"paragraph": {
"elements": [
{
"endIndex": 5082,
"startIndex": 5050,
"textRun": {
"content": " clock 1.1.0 (1.1.1 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5050
},
{
"endIndex": 5119,
"paragraph": {
"elements": [
{
"endIndex": 5119,
"startIndex": 5082,
"textRun": {
"content": " fake_async 1.3.0 (1.3.1 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5082
},
{
"endIndex": 5160,
"paragraph": {
"elements": [
{
"endIndex": 5160,
"startIndex": 5119,
"textRun": {
"content": "+ flutter_plugin_android_lifecycle 2.0.6\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5119
},
{
"endIndex": 5188,
"paragraph": {
"elements": [
{
"endIndex": 5188,
"startIndex": 5160,
"textRun": {
"content": "+ google_maps_flutter 2.1.8\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5160
},
{
"endIndex": 5235,
"paragraph": {
"elements": [
{
"endIndex": 5235,
"startIndex": 5188,
"textRun": {
"content": "+ google_maps_flutter_platform_interface 2.2.0\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5188
},
{
"endIndex": 5273,
"paragraph": {
"elements": [
{
"endIndex": 5273,
"startIndex": 5235,
"textRun": {
"content": " matcher 0.12.11 (0.12.12 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5235
},
{
"endIndex": 5324,
"paragraph": {
"elements": [
{
"endIndex": 5324,
"startIndex": 5273,
"textRun": {
"content": " material_color_utilities 0.1.4 (0.1.5 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5273
},
{
"endIndex": 5355,
"paragraph": {
"elements": [
{
"endIndex": 5355,
"startIndex": 5324,
"textRun": {
"content": " meta 1.7.0 (1.8.0 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5324
},
{
"endIndex": 5386,
"paragraph": {
"elements": [
{
"endIndex": 5386,
"startIndex": 5355,
"textRun": {
"content": " path 1.8.1 (1.8.2 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5355
},
{
"endIndex": 5420,
"paragraph": {
"elements": [
{
"endIndex": 5420,
"startIndex": 5386,
"textRun": {
"content": "+ plugin_platform_interface 2.1.2\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5386
},
{
"endIndex": 5458,
"paragraph": {
"elements": [
{
"endIndex": 5458,
"startIndex": 5420,
"textRun": {
"content": " source_span 1.8.2 (1.9.0 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5420
},
{
"endIndex": 5483,
"paragraph": {
"elements": [
{
"endIndex": 5483,
"startIndex": 5458,
"textRun": {
"content": "+ stream_transform 2.0.0\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5458
},
{
"endIndex": 5524,
"paragraph": {
"elements": [
{
"endIndex": 5524,
"startIndex": 5483,
"textRun": {
"content": " string_scanner 1.1.0 (1.1.1 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5483
},
{
"endIndex": 5561,
"paragraph": {
"elements": [
{
"endIndex": 5561,
"startIndex": 5524,
"textRun": {
"content": " term_glyph 1.2.0 (1.2.1 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5524
},
{
"endIndex": 5597,
"paragraph": {
"elements": [
{
"endIndex": 5597,
"startIndex": 5561,
"textRun": {
"content": " test_api 0.4.9 (0.4.12 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5561
},
{
"endIndex": 5621,
"paragraph": {
"elements": [
{
"endIndex": 5621,
"startIndex": 5597,
"textRun": {
"content": "Changed 5 dependencies!\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5597
}
],
"endIndex": 5621,
"startIndex": 4888,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 5623,
"paragraph": {
"elements": [
{
"endIndex": 5623,
"startIndex": 5622,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 5622
},
{
"endIndex": 5806,
"paragraph": {
"elements": [
{
"endIndex": 5806,
"startIndex": 5623,
"textRun": {
"content": "This codelab will also be covering how to use Google Maps in Flutter for Web. However, the Web version of the plugin is not yet federated, so you need to also add it to your project.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 5623
},
{
"endIndex": 5807,
"paragraph": {
"elements": [
{
"endIndex": 5807,
"startIndex": 5806,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.ap7742sx96fh",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 5806
},
{
"endIndex": 6573,
"startIndex": 5807,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 6572,
"startIndex": 5808,
"tableCells": [
{
"content": [
{
"endIndex": 5852,
"paragraph": {
"elements": [
{
"endIndex": 5852,
"startIndex": 5810,
"textRun": {
"content": "$ flutter pub add google_maps_flutter_web\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5810
},
{
"endIndex": 5878,
"paragraph": {
"elements": [
{
"endIndex": 5878,
"startIndex": 5852,
"textRun": {
"content": "Resolving dependencies...\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5852
},
{
"endIndex": 5910,
"paragraph": {
"elements": [
{
"endIndex": 5910,
"startIndex": 5878,
"textRun": {
"content": " async 2.8.2 (2.9.0 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5878
},
{
"endIndex": 5947,
"paragraph": {
"elements": [
{
"endIndex": 5947,
"startIndex": 5910,
"textRun": {
"content": " characters 1.2.0 (1.2.1 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5910
},
{
"endIndex": 5979,
"paragraph": {
"elements": [
{
"endIndex": 5979,
"startIndex": 5947,
"textRun": {
"content": " clock 1.1.0 (1.1.1 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5947
},
{
"endIndex": 5995,
"paragraph": {
"elements": [
{
"endIndex": 5995,
"startIndex": 5979,
"textRun": {
"content": "+ csslib 0.17.2\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5979
},
{
"endIndex": 6032,
"paragraph": {
"elements": [
{
"endIndex": 6032,
"startIndex": 5995,
"textRun": {
"content": " fake_async 1.3.0 (1.3.1 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5995
},
{
"endIndex": 6077,
"paragraph": {
"elements": [
{
"endIndex": 6077,
"startIndex": 6032,
"textRun": {
"content": "+ flutter_web_plugins 0.0.0 from sdk flutter\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6032
},
{
"endIndex": 6097,
"paragraph": {
"elements": [
{
"endIndex": 6097,
"startIndex": 6077,
"textRun": {
"content": "+ google_maps 6.2.0\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6077
},
{
"endIndex": 6131,
"paragraph": {
"elements": [
{
"endIndex": 6131,
"startIndex": 6097,
"textRun": {
"content": "+ google_maps_flutter_web 0.4.0+1\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6097
},
{
"endIndex": 6145,
"paragraph": {
"elements": [
{
"endIndex": 6145,
"startIndex": 6131,
"textRun": {
"content": "+ html 0.15.0\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6131
},
{
"endIndex": 6156,
"paragraph": {
"elements": [
{
"endIndex": 6156,
"startIndex": 6145,
"textRun": {
"content": "+ js 0.6.4\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6145
},
{
"endIndex": 6176,
"paragraph": {
"elements": [
{
"endIndex": 6176,
"startIndex": 6156,
"textRun": {
"content": "+ js_wrapping 0.7.4\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6156
},
{
"endIndex": 6214,
"paragraph": {
"elements": [
{
"endIndex": 6214,
"startIndex": 6176,
"textRun": {
"content": " matcher 0.12.11 (0.12.12 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6176
},
{
"endIndex": 6265,
"paragraph": {
"elements": [
{
"endIndex": 6265,
"startIndex": 6214,
"textRun": {
"content": " material_color_utilities 0.1.4 (0.1.5 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6214
},
{
"endIndex": 6296,
"paragraph": {
"elements": [
{
"endIndex": 6296,
"startIndex": 6265,
"textRun": {
"content": " meta 1.7.0 (1.8.0 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6265
},
{
"endIndex": 6327,
"paragraph": {
"elements": [
{
"endIndex": 6327,
"startIndex": 6296,
"textRun": {
"content": " path 1.8.1 (1.8.2 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6296
},
{
"endIndex": 6349,
"paragraph": {
"elements": [
{
"endIndex": 6349,
"startIndex": 6327,
"textRun": {
"content": "+ sanitize_html 2.0.0\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6327
},
{
"endIndex": 6387,
"paragraph": {
"elements": [
{
"endIndex": 6387,
"startIndex": 6349,
"textRun": {
"content": " source_span 1.8.2 (1.9.0 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6349
},
{
"endIndex": 6428,
"paragraph": {
"elements": [
{
"endIndex": 6428,
"startIndex": 6387,
"textRun": {
"content": " string_scanner 1.1.0 (1.1.1 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6387
},
{
"endIndex": 6465,
"paragraph": {
"elements": [
{
"endIndex": 6465,
"startIndex": 6428,
"textRun": {
"content": " term_glyph 1.2.0 (1.2.1 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6428
},
{
"endIndex": 6501,
"paragraph": {
"elements": [
{
"endIndex": 6501,
"startIndex": 6465,
"textRun": {
"content": " test_api 0.4.9 (0.4.12 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6465
},
{
"endIndex": 6548,
"paragraph": {
"elements": [
{
"endIndex": 6548,
"startIndex": 6501,
"textRun": {
"content": "Downloading google_maps_flutter_web 0.4.0+1...\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6501
},
{
"endIndex": 6572,
"paragraph": {
"elements": [
{
"endIndex": 6572,
"startIndex": 6548,
"textRun": {
"content": "Changed 8 dependencies!\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6548
}
],
"endIndex": 6572,
"startIndex": 5809,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 6574,
"paragraph": {
"elements": [
{
"endIndex": 6574,
"startIndex": 6573,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6573
},
{
"endIndex": 6599,
"paragraph": {
"elements": [
{
"endIndex": 6590,
"startIndex": 6574,
"textRun": {
"content": "Configuring iOS ",
"textStyle": {}
}
},
{
"endIndex": 6599,
"startIndex": 6590,
"textRun": {
"content": "platform\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.mqcx88xuw5gw",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 6574
},
{
"endIndex": 6737,
"paragraph": {
"elements": [
{
"endIndex": 6655,
"startIndex": 6599,
"textRun": {
"content": "To get the latest version of the Google Maps SDK on iOS ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 6700,
"startIndex": 6655,
"textRun": {
"content": "requires a platform minimum version of iOS 13",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://developers.google.com/maps/documentation/ios-sdk/overview#supported_platforms"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 6737,
"startIndex": 6700,
"textRun": {
"content": ". Modify the ios/Podfile as follows.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6599
},
{
"endIndex": 6750,
"paragraph": {
"elements": [
{
"endIndex": 6748,
"startIndex": 6737,
"textRun": {
"content": "ios/Podfile",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/master/google-maps-in-flutter/step_3/ios/Podfile"
},
"underline": true
}
}
},
{
"endIndex": 6750,
"startIndex": 6748,
"textRun": {
"content": " \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.ybyba458ho0a",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 6737
},
{
"endIndex": 6989,
"startIndex": 6750,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 6988,
"startIndex": 6751,
"tableCells": [
{
"content": [
{
"endIndex": 6809,
"paragraph": {
"elements": [
{
"endIndex": 6809,
"startIndex": 6753,
"textRun": {
"content": "# Set platform to 13.0 to enable latest Google Maps SDK\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6753
},
{
"endIndex": 6858,
"paragraph": {
"elements": [
{
"endIndex": 6858,
"startIndex": 6809,
"textRun": {
"content": "platform :ios, '13.0' # Uncomment and set to 13.\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6809
},
{
"endIndex": 6859,
"paragraph": {
"elements": [
{
"endIndex": 6859,
"startIndex": 6858,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6858
},
{
"endIndex": 6948,
"paragraph": {
"elements": [
{
"endIndex": 6948,
"startIndex": 6859,
"textRun": {
"content": "# CocoaPods analytics sends network stats synchronously affecting flutter build latency.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6859
},
{
"endIndex": 6988,
"paragraph": {
"elements": [
{
"endIndex": 6988,
"startIndex": 6948,
"textRun": {
"content": "ENV['COCOAPODS_DISABLE_STATS'] = 'true'\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6948
}
],
"endIndex": 6988,
"startIndex": 6752,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 6990,
"paragraph": {
"elements": [
{
"endIndex": 6990,
"startIndex": 6989,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6989
},
{
"endIndex": 6991,
"paragraph": {
"elements": [
{
"endIndex": 6991,
"startIndex": 6990,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6990
},
{
"endIndex": 7018,
"paragraph": {
"elements": [
{
"endIndex": 7011,
"startIndex": 6991,
"textRun": {
"content": "Configuring Android ",
"textStyle": {}
}
},
{
"endIndex": 7018,
"startIndex": 7011,
"textRun": {
"content": "minSDK\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.p7onrogu5vjj",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 6991
},
{
"endIndex": 7135,
"paragraph": {
"elements": [
{
"endIndex": 7073,
"startIndex": 7018,
"textRun": {
"content": "To use Google Maps SDK on Android requires setting the ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 7079,
"startIndex": 7073,
"textRun": {
"content": "minSDK",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7135,
"startIndex": 7079,
"textRun": {
"content": " to 20. Modify the android/app/build.gradle as follows.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7018
},
{
"endIndex": 7160,
"paragraph": {
"elements": [
{
"endIndex": 7159,
"startIndex": 7135,
"textRun": {
"content": "android/app/build.gradle",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/master/google-maps-in-flutter/step_3/android/app/build.gradle"
},
"underline": true
}
}
},
{
"endIndex": 7160,
"startIndex": 7159,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.slg6aay3y610",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 7135
},
{
"endIndex": 7582,
"startIndex": 7160,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 7581,
"startIndex": 7161,
"tableCells": [
{
"content": [
{
"endIndex": 7173,
"paragraph": {
"elements": [
{
"endIndex": 7173,
"startIndex": 7163,
"textRun": {
"content": "android {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7163
},
{
"endIndex": 7193,
"paragraph": {
"elements": [
{
"endIndex": 7193,
"startIndex": 7173,
"textRun": {
"content": " defaultConfig {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7173
},
{
"endIndex": 7315,
"paragraph": {
"elements": [
{
"endIndex": 7315,
"startIndex": 7193,
"textRun": {
"content": " // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7193
},
{
"endIndex": 7374,
"paragraph": {
"elements": [
{
"endIndex": 7374,
"startIndex": 7315,
"textRun": {
"content": " applicationId \"com.example.google_maps_in_flutter\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7315
},
{
"endIndex": 7433,
"paragraph": {
"elements": [
{
"endIndex": 7382,
"startIndex": 7374,
"textRun": {
"content": " ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7433,
"startIndex": 7382,
"textRun": {
"content": "minSdkVersion 20 // Set to 20\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7374
},
{
"endIndex": 7483,
"paragraph": {
"elements": [
{
"endIndex": 7483,
"startIndex": 7433,
"textRun": {
"content": " targetSdkVersion flutter.targetSdkVersion\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7433
},
{
"endIndex": 7534,
"paragraph": {
"elements": [
{
"endIndex": 7534,
"startIndex": 7483,
"textRun": {
"content": " versionCode flutterVersionCode.toInteger()\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7483
},
{
"endIndex": 7573,
"paragraph": {
"elements": [
{
"endIndex": 7573,
"startIndex": 7534,
"textRun": {
"content": " versionName flutterVersionName\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7534
},
{
"endIndex": 7579,
"paragraph": {
"elements": [
{
"endIndex": 7579,
"startIndex": 7573,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7573
},
{
"endIndex": 7581,
"paragraph": {
"elements": [
{
"endIndex": 7580,
"startIndex": 7579,
"textRun": {
"content": "}",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7581,
"startIndex": 7580,
"textRun": {
"content": "\n",
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.4,
"green": 0.4,
"red": 0.4
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7579
}
],
"endIndex": 7581,
"startIndex": 7162,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 7584,
"paragraph": {
"elements": [
{
"endIndex": 7584,
"startIndex": 7582,
"textRun": {
"content": " \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.tamuknk0p2u6",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 7582
},
{
"endIndex": 7585,
"paragraph": {
"elements": [
{
"endIndex": 7585,
"startIndex": 7584,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7584
},
{
"endIndex": 7615,
"paragraph": {
"elements": [
{
"endIndex": 7615,
"startIndex": 7585,
"textRun": {
"content": "Adding Google Maps to the app\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.btmxwf909kks",
"namedStyleType": "HEADING_1",
"pageBreakBefore": false
}
},
"startIndex": 7585
},
{
"endIndex": 7630,
"paragraph": {
"elements": [
{
"endIndex": 7629,
"startIndex": 7615,
"textRun": {
"content": "Duration: 5:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 7630,
"startIndex": 7629,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 7615
},
{
"endIndex": 7658,
"paragraph": {
"elements": [
{
"endIndex": 7658,
"startIndex": 7630,
"textRun": {
"content": "It’s all about the API keys\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.en66mhmr1ijb",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 7630
},
{
"endIndex": 7993,
"paragraph": {
"elements": [
{
"endIndex": 7744,
"startIndex": 7658,
"textRun": {
"content": "To use Google Maps in your Flutter app, you need to configure an API project with the ",
"textStyle": {}
}
},
{
"endIndex": 7764,
"startIndex": 7744,
"textRun": {
"content": "Google Maps Platform",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://cloud.google.com/maps-platform/"
},
"underline": true
}
}
},
{
"endIndex": 7780,
"startIndex": 7764,
"textRun": {
"content": ", following the ",
"textStyle": {}
}
},
{
"endIndex": 7816,
"startIndex": 7780,
"textRun": {
"content": "Maps SDK for Android's Using API key",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://developers.google.com/maps/documentation/android-sdk/signup"
},
"underline": true
}
}
},
{
"endIndex": 7817,
"startIndex": 7816,
"textRun": {
"content": ",",
"textStyle": {}
}
},
{
"endIndex": 7818,
"startIndex": 7817,
"textRun": {
"content": " ",
"textStyle": {}
}
},
{
"endIndex": 7849,
"startIndex": 7818,
"textRun": {
"content": "Maps SDK for iOS' Using API key",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://developers.google.com/maps/documentation/ios-sdk/get-api-key"
},
"underline": true
}
}
},
{
"endIndex": 7855,
"startIndex": 7849,
"textRun": {
"content": ", and ",
"textStyle": {}
}
},
{
"endIndex": 7890,
"startIndex": 7855,
"textRun": {
"content": "Maps JavaScript API’s Using API key",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://developers.google.com/maps/documentation/javascript/get-api-key"
},
"underline": true
}
}
},
{
"endIndex": 7993,
"startIndex": 7890,
"textRun": {
"content": ". With API keys in hand, carry out the following steps to configure both Android and iOS applications.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 7658
},
{
"endIndex": 7994,
"paragraph": {
"elements": [
{
"endIndex": 7994,
"startIndex": 7993,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 7993
},
{
"endIndex": 8031,
"paragraph": {
"elements": [
{
"endIndex": 8031,
"startIndex": 7994,
"textRun": {
"content": "Adding an API key for an Android app\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.434ea4sutt6b",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 7994
},
{
"endIndex": 8239,
"paragraph": {
"elements": [
{
"endIndex": 8078,
"startIndex": 8031,
"textRun": {
"content": "To add an API key to the Android app, edit the ",
"textStyle": {}
}
},
{
"endIndex": 8097,
"startIndex": 8078,
"textRun": {
"content": "AndroidManifest.xml",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8106,
"startIndex": 8097,
"textRun": {
"content": " file in ",
"textStyle": {}
}
},
{
"endIndex": 8126,
"startIndex": 8106,
"textRun": {
"content": "android/app/src/main",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8141,
"startIndex": 8126,
"textRun": {
"content": ". Add a single ",
"textStyle": {}
}
},
{
"endIndex": 8150,
"startIndex": 8141,
"textRun": {
"content": "meta-data",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8220,
"startIndex": 8150,
"textRun": {
"content": " entry containing the API key created in the previous step inside the ",
"textStyle": {}
}
},
{
"endIndex": 8231,
"startIndex": 8220,
"textRun": {
"content": "application",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8239,
"startIndex": 8231,
"textRun": {
"content": " node. \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 8031
},
{
"endIndex": 8280,
"paragraph": {
"elements": [
{
"endIndex": 8279,
"startIndex": 8239,
"textRun": {
"content": "android/app/src/main/AndroidManifest.xml",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/master/google-maps-in-flutter/step_4/android/app/src/main/AndroidManifest.xml"
},
"underline": true
}
}
},
{
"endIndex": 8280,
"startIndex": 8279,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.o4cuz5mt8mgq",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 8239
},
{
"endIndex": 9789,
"startIndex": 8280,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 9788,
"startIndex": 8281,
"tableCells": [
{
"content": [
{
"endIndex": 8352,
"paragraph": {
"elements": [
{
"endIndex": 8352,
"startIndex": 8283,
"textRun": {
"content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8283
},
{
"endIndex": 8402,
"paragraph": {
"elements": [
{
"endIndex": 8402,
"startIndex": 8352,
"textRun": {
"content": " package=\"com.example.google_maps_in_flutter\">\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8352
},
{
"endIndex": 8419,
"paragraph": {
"elements": [
{
"endIndex": 8419,
"startIndex": 8402,
"textRun": {
"content": " <application\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8402
},
{
"endIndex": 8466,
"paragraph": {
"elements": [
{
"endIndex": 8466,
"startIndex": 8419,
"textRun": {
"content": " android:label=\"google_maps_in_flutter\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8419
},
{
"endIndex": 8510,
"paragraph": {
"elements": [
{
"endIndex": 8510,
"startIndex": 8466,
"textRun": {
"content": " android:icon=\"@mipmap/ic_launcher\">\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8466
},
{
"endIndex": 8511,
"paragraph": {
"elements": [
{
"endIndex": 8511,
"startIndex": 8510,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8510
},
{
"endIndex": 8568,
"paragraph": {
"elements": [
{
"endIndex": 8519,
"startIndex": 8511,
"textRun": {
"content": " ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8568,
"startIndex": 8519,
"textRun": {
"content": "<!-- TODO: Add your Google Maps API key here -->\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8511
},
{
"endIndex": 8633,
"paragraph": {
"elements": [
{
"endIndex": 8633,
"startIndex": 8568,
"textRun": {
"content": " <meta-data android:name=\"com.google.android.geo.API_KEY\"\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8568
},
{
"endIndex": 8680,
"paragraph": {
"elements": [
{
"endIndex": 8680,
"startIndex": 8633,
"textRun": {
"content": " android:value=\"YOUR-KEY-HERE\"/>\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8633
},
{
"endIndex": 8681,
"paragraph": {
"elements": [
{
"endIndex": 8681,
"startIndex": 8680,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8680
},
{
"endIndex": 8699,
"paragraph": {
"elements": [
{
"endIndex": 8699,
"startIndex": 8681,
"textRun": {
"content": " <activity\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8681
},
{
"endIndex": 8740,
"paragraph": {
"elements": [
{
"endIndex": 8740,
"startIndex": 8699,
"textRun": {
"content": " android:name=\".MainActivity\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8699
},
{
"endIndex": 8783,
"paragraph": {
"elements": [
{
"endIndex": 8783,
"startIndex": 8740,
"textRun": {
"content": " android:launchMode=\"singleTop\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8740
},
{
"endIndex": 8830,
"paragraph": {
"elements": [
{
"endIndex": 8830,
"startIndex": 8783,
"textRun": {
"content": " android:theme=\"@style/LaunchTheme\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8783
},
{
"endIndex": 8993,
"paragraph": {
"elements": [
{
"endIndex": 8993,
"startIndex": 8830,
"textRun": {
"content": " android:configChanges=\"orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8830
},
{
"endIndex": 9040,
"paragraph": {
"elements": [
{
"endIndex": 9040,
"startIndex": 8993,
"textRun": {
"content": " android:hardwareAccelerated=\"true\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8993
},
{
"endIndex": 9096,
"paragraph": {
"elements": [
{
"endIndex": 9096,
"startIndex": 9040,
"textRun": {
"content": " android:windowSoftInputMode=\"adjustResize\">\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9040
},
{
"endIndex": 9119,
"paragraph": {
"elements": [
{
"endIndex": 9119,
"startIndex": 9096,
"textRun": {
"content": " <meta-data\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9096
},
{
"endIndex": 9189,
"paragraph": {
"elements": [
{
"endIndex": 9189,
"startIndex": 9119,
"textRun": {
"content": " android:name=\"io.flutter.embedding.android.NormalTheme\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9119
},
{
"endIndex": 9241,
"paragraph": {
"elements": [
{
"endIndex": 9241,
"startIndex": 9189,
"textRun": {
"content": " android:resource=\"@style/NormalTheme\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9189
},
{
"endIndex": 9258,
"paragraph": {
"elements": [
{
"endIndex": 9258,
"startIndex": 9241,
"textRun": {
"content": " />\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9241
},
{
"endIndex": 9281,
"paragraph": {
"elements": [
{
"endIndex": 9281,
"startIndex": 9258,
"textRun": {
"content": " <meta-data\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9258
},
{
"endIndex": 9360,
"paragraph": {
"elements": [
{
"endIndex": 9360,
"startIndex": 9281,
"textRun": {
"content": " android:name=\"io.flutter.embedding.android.SplashScreenDrawable\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9281
},
{
"endIndex": 9421,
"paragraph": {
"elements": [
{
"endIndex": 9421,
"startIndex": 9360,
"textRun": {
"content": " android:resource=\"@drawable/launch_background\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9360
},
{
"endIndex": 9438,
"paragraph": {
"elements": [
{
"endIndex": 9438,
"startIndex": 9421,
"textRun": {
"content": " />\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9421
},
{
"endIndex": 9466,
"paragraph": {
"elements": [
{
"endIndex": 9466,
"startIndex": 9438,
"textRun": {
"content": " <intent-filter>\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9438
},
{
"endIndex": 9534,
"paragraph": {
"elements": [
{
"endIndex": 9534,
"startIndex": 9466,
"textRun": {
"content": " <action android:name=\"android.intent.action.MAIN\"/>\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9466
},
{
"endIndex": 9610,
"paragraph": {
"elements": [
{
"endIndex": 9610,
"startIndex": 9534,
"textRun": {
"content": " <category android:name=\"android.intent.category.LAUNCHER\"/>\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9534
},
{
"endIndex": 9639,
"paragraph": {
"elements": [
{
"endIndex": 9639,
"startIndex": 9610,
"textRun": {
"content": " </intent-filter>\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9610
},
{
"endIndex": 9659,
"paragraph": {
"elements": [
{
"endIndex": 9659,
"startIndex": 9639,
"textRun": {
"content": " </activity>\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9639
},
{
"endIndex": 9678,
"paragraph": {
"elements": [
{
"endIndex": 9678,
"startIndex": 9659,
"textRun": {
"content": " <meta-data\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9659
},
{
"endIndex": 9722,
"paragraph": {
"elements": [
{
"endIndex": 9722,
"startIndex": 9678,
"textRun": {
"content": " android:name=\"flutterEmbedding\"\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9678
},
{
"endIndex": 9755,
"paragraph": {
"elements": [
{
"endIndex": 9755,
"startIndex": 9722,
"textRun": {
"content": " android:value=\"2\" />\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9722
},
{
"endIndex": 9774,
"paragraph": {
"elements": [
{
"endIndex": 9774,
"startIndex": 9755,
"textRun": {
"content": " </application>\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9755
},
{
"endIndex": 9786,
"paragraph": {
"elements": [
{
"endIndex": 9786,
"startIndex": 9774,
"textRun": {
"content": "</manifest>\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9774
},
{
"endIndex": 9787,
"paragraph": {
"elements": [
{
"endIndex": 9787,
"startIndex": 9786,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9786
},
{
"endIndex": 9788,
"paragraph": {
"elements": [
{
"endIndex": 9788,
"startIndex": 9787,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9787
}
],
"endIndex": 9788,
"startIndex": 8282,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 9790,
"paragraph": {
"elements": [
{
"endIndex": 9790,
"startIndex": 9789,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 9789
},
{
"endIndex": 9823,
"paragraph": {
"elements": [
{
"endIndex": 9823,
"startIndex": 9790,
"textRun": {
"content": "Adding an API key for an iOS app\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.rwumwtdz8sbu",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 9790
},
{
"endIndex": 10086,
"paragraph": {
"elements": [
{
"endIndex": 9866,
"startIndex": 9823,
"textRun": {
"content": "To add an API key to the iOS app, edit the ",
"textStyle": {}
}
},
{
"endIndex": 9883,
"startIndex": 9866,
"textRun": {
"content": "AppDelegate.swift",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 9892,
"startIndex": 9883,
"textRun": {
"content": " file in ",
"textStyle": {}
}
},
{
"endIndex": 9902,
"startIndex": 9892,
"textRun": {
"content": "ios/Runner",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 10086,
"startIndex": 9902,
"textRun": {
"content": ". Unlike Android, adding an API key on iOS requires changes to the source code of the Runner app. The AppDelegate is the core singleton that is part of the app initialization process.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 9823
},
{
"endIndex": 10087,
"paragraph": {
"elements": [
{
"endIndex": 10087,
"startIndex": 10086,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 10086
},
{
"endIndex": 10320,
"paragraph": {
"elements": [
{
"endIndex": 10132,
"startIndex": 10087,
"textRun": {
"content": "Make two changes to this file. First, add an ",
"textStyle": {}
}
},
{
"endIndex": 10139,
"startIndex": 10132,
"textRun": {
"content": "#import",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 10204,
"startIndex": 10139,
"textRun": {
"content": " statement to pull in the Google Maps headers, and then call the ",
"textStyle": {}
}
},
{
"endIndex": 10219,
"startIndex": 10204,
"textRun": {
"content": "provideAPIKey()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 10234,
"startIndex": 10219,
"textRun": {
"content": " method of the ",
"textStyle": {}
}
},
{
"endIndex": 10245,
"startIndex": 10234,
"textRun": {
"content": "GMSServices",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 10320,
"startIndex": 10245,
"textRun": {
"content": " singleton. This API key enables Google Maps to correctly serve map tiles.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 10087
},
{
"endIndex": 10349,
"paragraph": {
"elements": [
{
"endIndex": 10348,
"startIndex": 10320,
"textRun": {
"content": "ios/Runner/AppDelegate.swift",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/master/google-maps-in-flutter/step_4/ios/Runner/AppDelegate.swift"
},
"underline": true
}
}
},
{
"endIndex": 10349,
"startIndex": 10348,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.anteseqrbtav",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 10320
},
{
"endIndex": 10887,
"startIndex": 10349,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 10886,
"startIndex": 10350,
"tableCells": [
{
"content": [
{
"endIndex": 10365,
"paragraph": {
"elements": [
{
"endIndex": 10365,
"startIndex": 10352,
"textRun": {
"content": "import UIKit\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10352
},
{
"endIndex": 10380,
"paragraph": {
"elements": [
{
"endIndex": 10380,
"startIndex": 10365,
"textRun": {
"content": "import Flutter\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10365
},
{
"endIndex": 10418,
"paragraph": {
"elements": [
{
"endIndex": 10418,
"startIndex": 10380,
"textRun": {
"content": "import GoogleMaps // Add this import\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10380
},
{
"endIndex": 10419,
"paragraph": {
"elements": [
{
"endIndex": 10419,
"startIndex": 10418,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10418
},
{
"endIndex": 10438,
"paragraph": {
"elements": [
{
"endIndex": 10438,
"startIndex": 10419,
"textRun": {
"content": "@UIApplicationMain\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10419
},
{
"endIndex": 10484,
"paragraph": {
"elements": [
{
"endIndex": 10484,
"startIndex": 10438,
"textRun": {
"content": "@objc class AppDelegate: FlutterAppDelegate {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10438
},
{
"endIndex": 10513,
"paragraph": {
"elements": [
{
"endIndex": 10513,
"startIndex": 10484,
"textRun": {
"content": " override func application(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10484
},
{
"endIndex": 10547,
"paragraph": {
"elements": [
{
"endIndex": 10547,
"startIndex": 10513,
"textRun": {
"content": " _ application: UIApplication,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10513
},
{
"endIndex": 10635,
"paragraph": {
"elements": [
{
"endIndex": 10635,
"startIndex": 10547,
"textRun": {
"content": " didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10547
},
{
"endIndex": 10649,
"paragraph": {
"elements": [
{
"endIndex": 10649,
"startIndex": 10635,
"textRun": {
"content": " ) -> Bool {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10635
},
{
"endIndex": 10700,
"paragraph": {
"elements": [
{
"endIndex": 10700,
"startIndex": 10649,
"textRun": {
"content": " GeneratedPluginRegistrant.register(with: self)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10649
},
{
"endIndex": 10701,
"paragraph": {
"elements": [
{
"endIndex": 10701,
"startIndex": 10700,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10700
},
{
"endIndex": 10743,
"paragraph": {
"elements": [
{
"endIndex": 10705,
"startIndex": 10701,
"textRun": {
"content": " ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 10743,
"startIndex": 10705,
"textRun": {
"content": "// TODO: Add your Google Maps API key\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10701
},
{
"endIndex": 10789,
"paragraph": {
"elements": [
{
"endIndex": 10789,
"startIndex": 10743,
"textRun": {
"content": " GMSServices.provideAPIKey(\"YOUR-API-KEY\")\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10743
},
{
"endIndex": 10790,
"paragraph": {
"elements": [
{
"endIndex": 10790,
"startIndex": 10789,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10789
},
{
"endIndex": 10878,
"paragraph": {
"elements": [
{
"endIndex": 10878,
"startIndex": 10790,
"textRun": {
"content": " return super.application(application, didFinishLaunchingWithOptions: launchOptions)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10790
},
{
"endIndex": 10882,
"paragraph": {
"elements": [
{
"endIndex": 10882,
"startIndex": 10878,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10878
},
{
"endIndex": 10884,
"paragraph": {
"elements": [
{
"endIndex": 10884,
"startIndex": 10882,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10882
},
{
"endIndex": 10885,
"paragraph": {
"elements": [
{
"endIndex": 10885,
"startIndex": 10884,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10884
},
{
"endIndex": 10886,
"paragraph": {
"elements": [
{
"endIndex": 10886,
"startIndex": 10885,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10885
}
],
"endIndex": 10886,
"startIndex": 10351,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 10888,
"paragraph": {
"elements": [
{
"endIndex": 10888,
"startIndex": 10887,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 10887
},
{
"endIndex": 10920,
"paragraph": {
"elements": [
{
"endIndex": 10920,
"startIndex": 10888,
"textRun": {
"content": "Adding an API key for a Web app\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.5yc7m5vpgm3a",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 10888
},
{
"endIndex": 11073,
"paragraph": {
"elements": [
{
"endIndex": 10963,
"startIndex": 10920,
"textRun": {
"content": "To add an API key to the Web app, edit the ",
"textStyle": {}
}
},
{
"endIndex": 10973,
"startIndex": 10963,
"textRun": {
"content": "index.html",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 10982,
"startIndex": 10973,
"textRun": {
"content": " file in ",
"textStyle": {}
}
},
{
"endIndex": 10985,
"startIndex": 10982,
"textRun": {
"content": "web",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 11073,
"startIndex": 10985,
"textRun": {
"content": ". Add a reference to the Maps JavaScript script in the head section, with your API key.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 10920
},
{
"endIndex": 11088,
"paragraph": {
"elements": [
{
"endIndex": 11087,
"startIndex": 11073,
"textRun": {
"content": "web/index.html",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/master/google-maps-in-flutter/step_4/web/index.html"
},
"underline": true
}
}
},
{
"endIndex": 11088,
"startIndex": 11087,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.5qlnpoq6oucx",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 11073
},
{
"endIndex": 11791,
"startIndex": 11088,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 11790,
"startIndex": 11089,
"tableCells": [
{
"content": [
{
"endIndex": 11098,
"paragraph": {
"elements": [
{
"endIndex": 11098,
"startIndex": 11091,
"textRun": {
"content": "<head>\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11091
},
{
"endIndex": 11116,
"paragraph": {
"elements": [
{
"endIndex": 11116,
"startIndex": 11098,
"textRun": {
"content": " <base href=\"/\">\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11098
},
{
"endIndex": 11117,
"paragraph": {
"elements": [
{
"endIndex": 11117,
"startIndex": 11116,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11116
},
{
"endIndex": 11142,
"paragraph": {
"elements": [
{
"endIndex": 11142,
"startIndex": 11117,
"textRun": {
"content": " <meta charset=\"UTF-8\">\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11117
},
{
"endIndex": 11198,
"paragraph": {
"elements": [
{
"endIndex": 11198,
"startIndex": 11142,
"textRun": {
"content": " <meta content=\"IE=Edge\" http-equiv=\"X-UA-Compatible\">\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11142
},
{
"endIndex": 11259,
"paragraph": {
"elements": [
{
"endIndex": 11259,
"startIndex": 11198,
"textRun": {
"content": " <meta name=\"description\" content=\"A new Flutter project.\">\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11198
},
{
"endIndex": 11260,
"paragraph": {
"elements": [
{
"endIndex": 11260,
"startIndex": 11259,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11259
},
{
"endIndex": 11293,
"paragraph": {
"elements": [
{
"endIndex": 11293,
"startIndex": 11260,
"textRun": {
"content": " <!-- iOS meta tags & icons -->\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11260
},
{
"endIndex": 11352,
"paragraph": {
"elements": [
{
"endIndex": 11352,
"startIndex": 11293,
"textRun": {
"content": " <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11293
},
{
"endIndex": 11422,
"paragraph": {
"elements": [
{
"endIndex": 11422,
"startIndex": 11352,
"textRun": {
"content": " <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11352
},
{
"endIndex": 11498,
"paragraph": {
"elements": [
{
"endIndex": 11498,
"startIndex": 11422,
"textRun": {
"content": " <meta name=\"apple-mobile-web-app-title\" content=\"google_maps_in_flutter\">\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11422
},
{
"endIndex": 11556,
"paragraph": {
"elements": [
{
"endIndex": 11556,
"startIndex": 11498,
"textRun": {
"content": " <link rel=\"apple-touch-icon\" href=\"icons/Icon-192.png\">\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11498
},
{
"endIndex": 11557,
"paragraph": {
"elements": [
{
"endIndex": 11557,
"startIndex": 11556,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11556
},
{
"endIndex": 11608,
"paragraph": {
"elements": [
{
"endIndex": 11608,
"startIndex": 11557,
"textRun": {
"content": " <!-- TODO: Add your Google Maps API key here -->\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11557
},
{
"endIndex": 11692,
"paragraph": {
"elements": [
{
"endIndex": 11692,
"startIndex": 11608,
"textRun": {
"content": " <script src=\"https://maps.googleapis.com/maps/api/js?key=YOUR-KEY-HERE\"></script>\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11608
},
{
"endIndex": 11693,
"paragraph": {
"elements": [
{
"endIndex": 11693,
"startIndex": 11692,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11692
},
{
"endIndex": 11733,
"paragraph": {
"elements": [
{
"endIndex": 11733,
"startIndex": 11693,
"textRun": {
"content": " <title>google_maps_in_flutter</title>\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11693
},
{
"endIndex": 11778,
"paragraph": {
"elements": [
{
"endIndex": 11778,
"startIndex": 11733,
"textRun": {
"content": " <link rel=\"manifest\" href=\"manifest.json\">\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11733
},
{
"endIndex": 11786,
"paragraph": {
"elements": [
{
"endIndex": 11786,
"startIndex": 11778,
"textRun": {
"content": "</head>\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11778
},
{
"endIndex": 11787,
"paragraph": {
"elements": [
{
"endIndex": 11787,
"startIndex": 11786,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11786
},
{
"endIndex": 11788,
"paragraph": {
"elements": [
{
"endIndex": 11788,
"startIndex": 11787,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11787
},
{
"endIndex": 11789,
"paragraph": {
"elements": [
{
"endIndex": 11789,
"startIndex": 11788,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11788
},
{
"endIndex": 11790,
"paragraph": {
"elements": [
{
"endIndex": 11790,
"startIndex": 11789,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11789
}
],
"endIndex": 11790,
"startIndex": 11090,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 11792,
"paragraph": {
"elements": [
{
"endIndex": 11792,
"startIndex": 11791,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 11791
},
{
"endIndex": 11820,
"paragraph": {
"elements": [
{
"endIndex": 11820,
"startIndex": 11792,
"textRun": {
"content": "Putting a map on the screen\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.siyd9f71otj",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 11792
},
{
"endIndex": 11895,
"paragraph": {
"elements": [
{
"endIndex": 11869,
"startIndex": 11820,
"textRun": {
"content": "Now it’s time to get a map on the screen. Update ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 11882,
"startIndex": 11869,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 11895,
"startIndex": 11882,
"textRun": {
"content": " as follows.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 11820
},
{
"endIndex": 11909,
"paragraph": {
"elements": [
{
"endIndex": 11908,
"startIndex": 11895,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/master/google-maps-in-flutter/step_4/lib/main.dart"
},
"underline": true
}
}
},
{
"endIndex": 11909,
"startIndex": 11908,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.aqw5fitml1t2",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 11895
},
{
"endIndex": 12945,
"startIndex": 11909,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 12944,
"startIndex": 11910,
"tableCells": [
{
"content": [
{
"endIndex": 11952,
"paragraph": {
"elements": [
{
"endIndex": 11952,
"startIndex": 11912,
"textRun": {
"content": "import 'package:flutter/material.dart';\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11912
},
{
"endIndex": 12015,
"paragraph": {
"elements": [
{
"endIndex": 12015,
"startIndex": 11952,
"textRun": {
"content": "import 'package:google_maps_flutter/google_maps_flutter.dart';\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11952
},
{
"endIndex": 12016,
"paragraph": {
"elements": [
{
"endIndex": 12016,
"startIndex": 12015,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12015
},
{
"endIndex": 12054,
"paragraph": {
"elements": [
{
"endIndex": 12054,
"startIndex": 12016,
"textRun": {
"content": "void main() => runApp(const MyApp());\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12016
},
{
"endIndex": 12055,
"paragraph": {
"elements": [
{
"endIndex": 12055,
"startIndex": 12054,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12054
},
{
"endIndex": 12092,
"paragraph": {
"elements": [
{
"endIndex": 12092,
"startIndex": 12055,
"textRun": {
"content": "class MyApp extends StatefulWidget {\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12055
},
{
"endIndex": 12120,
"paragraph": {
"elements": [
{
"endIndex": 12120,
"startIndex": 12092,
"textRun": {
"content": " const MyApp({super.key});\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12092
},
{
"endIndex": 12121,
"paragraph": {
"elements": [
{
"endIndex": 12121,
"startIndex": 12120,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12120
},
{
"endIndex": 12133,
"paragraph": {
"elements": [
{
"endIndex": 12133,
"startIndex": 12121,
"textRun": {
"content": " @override\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12121
},
{
"endIndex": 12180,
"paragraph": {
"elements": [
{
"endIndex": 12180,
"startIndex": 12133,
"textRun": {
"content": " State<MyApp> createState() => _MyAppState();\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12133
},
{
"endIndex": 12182,
"paragraph": {
"elements": [
{
"endIndex": 12182,
"startIndex": 12180,
"textRun": {
"content": "}\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12180
},
{
"endIndex": 12183,
"paragraph": {
"elements": [
{
"endIndex": 12183,
"startIndex": 12182,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12182
},
{
"endIndex": 12224,
"paragraph": {
"elements": [
{
"endIndex": 12224,
"startIndex": 12183,
"textRun": {
"content": "class _MyAppState extends State<MyApp> {\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12183
},
{
"endIndex": 12266,
"paragraph": {
"elements": [
{
"endIndex": 12266,
"startIndex": 12224,
"textRun": {
"content": " late GoogleMapController mapController;\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12224
},
{
"endIndex": 12267,
"paragraph": {
"elements": [
{
"endIndex": 12267,
"startIndex": 12266,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12266
},
{
"endIndex": 12330,
"paragraph": {
"elements": [
{
"endIndex": 12330,
"startIndex": 12267,
"textRun": {
"content": " final LatLng _center = const LatLng(45.521563, -122.677433);\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12267
},
{
"endIndex": 12331,
"paragraph": {
"elements": [
{
"endIndex": 12331,
"startIndex": 12330,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12330
},
{
"endIndex": 12386,
"paragraph": {
"elements": [
{
"endIndex": 12386,
"startIndex": 12331,
"textRun": {
"content": " void _onMapCreated(GoogleMapController controller) {\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12331
},
{
"endIndex": 12418,
"paragraph": {
"elements": [
{
"endIndex": 12418,
"startIndex": 12386,
"textRun": {
"content": " mapController = controller;\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12386
},
{
"endIndex": 12422,
"paragraph": {
"elements": [
{
"endIndex": 12422,
"startIndex": 12418,
"textRun": {
"content": " }\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12418
},
{
"endIndex": 12423,
"paragraph": {
"elements": [
{
"endIndex": 12423,
"startIndex": 12422,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12422
},
{
"endIndex": 12435,
"paragraph": {
"elements": [
{
"endIndex": 12435,
"startIndex": 12423,
"textRun": {
"content": " @override\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12423
},
{
"endIndex": 12474,
"paragraph": {
"elements": [
{
"endIndex": 12474,
"startIndex": 12435,
"textRun": {
"content": " Widget build(BuildContext context) {\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12435
},
{
"endIndex": 12498,
"paragraph": {
"elements": [
{
"endIndex": 12498,
"startIndex": 12474,
"textRun": {
"content": " return MaterialApp(\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12474
},
{
"endIndex": 12522,
"paragraph": {
"elements": [
{
"endIndex": 12522,
"startIndex": 12498,
"textRun": {
"content": " theme: ThemeData(\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12498
},
{
"endIndex": 12550,
"paragraph": {
"elements": [
{
"endIndex": 12550,
"startIndex": 12522,
"textRun": {
"content": " useMaterial3: true,\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12522
},
{
"endIndex": 12594,
"paragraph": {
"elements": [
{
"endIndex": 12594,
"startIndex": 12550,
"textRun": {
"content": " colorSchemeSeed: Colors.green[700],\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12550
},
{
"endIndex": 12603,
"paragraph": {
"elements": [
{
"endIndex": 12603,
"startIndex": 12594,
"textRun": {
"content": " ),\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12594
},
{
"endIndex": 12625,
"paragraph": {
"elements": [
{
"endIndex": 12625,
"startIndex": 12603,
"textRun": {
"content": " home: Scaffold(\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12603
},
{
"endIndex": 12649,
"paragraph": {
"elements": [
{
"endIndex": 12649,
"startIndex": 12625,
"textRun": {
"content": " appBar: AppBar(\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12625
},
{
"endIndex": 12697,
"paragraph": {
"elements": [
{
"endIndex": 12697,
"startIndex": 12649,
"textRun": {
"content": " title: const Text('Maps Sample App'),\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12649
},
{
"endIndex": 12721,
"paragraph": {
"elements": [
{
"endIndex": 12721,
"startIndex": 12697,
"textRun": {
"content": " elevation: 2,\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12697
},
{
"endIndex": 12732,
"paragraph": {
"elements": [
{
"endIndex": 12732,
"startIndex": 12721,
"textRun": {
"content": " ),\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12721
},
{
"endIndex": 12757,
"paragraph": {
"elements": [
{
"endIndex": 12757,
"startIndex": 12732,
"textRun": {
"content": " body: GoogleMap(\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12732
},
{
"endIndex": 12796,
"paragraph": {
"elements": [
{
"endIndex": 12796,
"startIndex": 12757,
"textRun": {
"content": " onMapCreated: _onMapCreated,\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12757
},
{
"endIndex": 12845,
"paragraph": {
"elements": [
{
"endIndex": 12845,
"startIndex": 12796,
"textRun": {
"content": " initialCameraPosition: CameraPosition(\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12796
},
{
"endIndex": 12874,
"paragraph": {
"elements": [
{
"endIndex": 12874,
"startIndex": 12845,
"textRun": {
"content": " target: _center,\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12845
},
{
"endIndex": 12898,
"paragraph": {
"elements": [
{
"endIndex": 12898,
"startIndex": 12874,
"textRun": {
"content": " zoom: 11.0,\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12874
},
{
"endIndex": 12911,
"paragraph": {
"elements": [
{
"endIndex": 12911,
"startIndex": 12898,
"textRun": {
"content": " ),\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12898
},
{
"endIndex": 12922,
"paragraph": {
"elements": [
{
"endIndex": 12922,
"startIndex": 12911,
"textRun": {
"content": " ),\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12911
},
{
"endIndex": 12931,
"paragraph": {
"elements": [
{
"endIndex": 12931,
"startIndex": 12922,
"textRun": {
"content": " ),\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12922
},
{
"endIndex": 12938,
"paragraph": {
"elements": [
{
"endIndex": 12938,
"startIndex": 12931,
"textRun": {
"content": " );\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12931
},
{
"endIndex": 12942,
"paragraph": {
"elements": [
{
"endIndex": 12942,
"startIndex": 12938,
"textRun": {
"content": " }\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12938
},
{
"endIndex": 12944,
"paragraph": {
"elements": [
{
"endIndex": 12944,
"startIndex": 12942,
"textRun": {
"content": "}\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 12942
}
],
"endIndex": 12944,
"startIndex": 11911,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 12946,
"paragraph": {
"elements": [
{
"endIndex": 12946,
"startIndex": 12945,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 12945
},
{
"endIndex": 12962,
"paragraph": {
"elements": [
{
"endIndex": 12962,
"startIndex": 12946,
"textRun": {
"content": "Running the app\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.g24cz77tf7tj",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 12946
},
{
"endIndex": 13227,
"paragraph": {
"elements": [
{
"endIndex": 13226,
"startIndex": 12962,
"textRun": {
"content": "Run the Flutter app in either iOS or Android to see a single map view, centered on Portland. Alternatively, run up either an Android emulator or an iOS simulator. Feel free to modify the map center to represent your hometown, or somewhere that is important to you.",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13227,
"startIndex": 13226,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
}
}
},
"startIndex": 12962
},
{
"endIndex": 13245,
"startIndex": 13227,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 13244,
"startIndex": 13228,
"tableCells": [
{
"content": [
{
"endIndex": 13244,
"paragraph": {
"elements": [
{
"endIndex": 13243,
"startIndex": 13230,
"textRun": {
"content": "$ flutter run",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
},
{
"endIndex": 13244,
"startIndex": 13243,
"textRun": {
"content": "\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 13230
}
],
"endIndex": 13244,
"startIndex": 13229,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 13246,
"paragraph": {
"elements": [
{
"endIndex": 13246,
"startIndex": 13245,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 13245
},
{
"endIndex": 13247,
"paragraph": {
"elements": [
{
"endIndex": 13247,
"startIndex": 13246,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
}
}
},
"startIndex": 13246
},
{
"endIndex": 13257,
"startIndex": 13247,
"table": {
"columns": 2,
"rows": 1,
"tableRows": [
{
"endIndex": 13256,
"startIndex": 13248,
"tableCells": [
{
"content": [
{
"endIndex": 13252,
"paragraph": {
"elements": [
{
"endIndex": 13251,
"inlineObjectElement": {
"inlineObjectId": "kix.89ot02lt7ssg",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"startIndex": 13250
},
{
"endIndex": 13252,
"startIndex": 13251,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
}
}
},
"startIndex": 13250
},
{
"endIndex": 13253,
"paragraph": {
"elements": [
{
"endIndex": 13253,
"startIndex": 13252,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
}
}
},
"startIndex": 13252
}
],
"endIndex": 13253,
"startIndex": 13249,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
},
{
"content": [
{
"endIndex": 13256,
"paragraph": {
"elements": [
{
"endIndex": 13255,
"inlineObjectElement": {
"inlineObjectId": "kix.juxcraolrfj0",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"startIndex": 13254
},
{
"endIndex": 13256,
"startIndex": 13255,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
}
}
},
"startIndex": 13254
}
],
"endIndex": 13256,
"startIndex": 13253,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
},
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 13258,
"paragraph": {
"elements": [
{
"endIndex": 13258,
"startIndex": 13257,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
}
}
},
"startIndex": 13257
},
{
"endIndex": 13280,
"paragraph": {
"elements": [
{
"endIndex": 13280,
"startIndex": 13258,
"textRun": {
"content": "Put Google on the Map\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.c60hsrd97hl2",
"namedStyleType": "HEADING_1",
"pageBreakBefore": false
}
},
"startIndex": 13258
},
{
"endIndex": 13296,
"paragraph": {
"elements": [
{
"endIndex": 13295,
"startIndex": 13280,
"textRun": {
"content": "Duration: 10:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13296,
"startIndex": 13295,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 13280
},
{
"endIndex": 13297,
"paragraph": {
"elements": [
{
"endIndex": 13297,
"startIndex": 13296,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 13296
},
{
"endIndex": 13704,
"paragraph": {
"elements": [
{
"endIndex": 13344,
"startIndex": 13297,
"textRun": {
"content": "Google has many offices around the world, from ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13357,
"startIndex": 13344,
"textRun": {
"content": "North America",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://about.google/locations/?region=north-america"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13359,
"startIndex": 13357,
"textRun": {
"content": ", ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13372,
"startIndex": 13359,
"textRun": {
"content": "Latin America",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://about.google/locations/?region=latin-america"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13374,
"startIndex": 13372,
"textRun": {
"content": ", ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13380,
"startIndex": 13374,
"textRun": {
"content": "Europe",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://about.google/locations/?region=europe"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13382,
"startIndex": 13380,
"textRun": {
"content": ", ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13394,
"startIndex": 13382,
"textRun": {
"content": "Asia Pacific",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://about.google/locations/?region=asia-pacific"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13399,
"startIndex": 13394,
"textRun": {
"content": ", to ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13419,
"startIndex": 13399,
"textRun": {
"content": "Africa & Middle East",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://about.google/locations/?region=africa-middle-east"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13514,
"startIndex": 13419,
"textRun": {
"content": ". The nice thing about these maps, if you investigate them, is that they have an easily usable ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13526,
"startIndex": 13514,
"textRun": {
"content": "API endpoint",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://about.google/static/data/locations.json"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13704,
"startIndex": 13526,
"textRun": {
"content": " for supplying the office location information in JSON format. In this step, you put these office locations on the map. In this step, you will use code generation to parse JSON.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
}
}
},
"startIndex": 13297
},
{
"endIndex": 13829,
"paragraph": {
"elements": [
{
"endIndex": 13783,
"startIndex": 13704,
"textRun": {
"content": "Add three new Flutter dependencies to the project as follows. Firstly, add the ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13787,
"startIndex": 13783,
"textRun": {
"content": "http",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dev/packages/http"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 13829,
"startIndex": 13787,
"textRun": {
"content": " package for making HTTP requests easily.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
}
}
},
"startIndex": 13704
},
{
"endIndex": 14063,
"startIndex": 13829,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 14062,
"startIndex": 13830,
"tableCells": [
{
"content": [
{
"endIndex": 13855,
"paragraph": {
"elements": [
{
"endIndex": 13855,
"startIndex": 13832,
"textRun": {
"content": "$ flutter pub add http\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 13832
},
{
"endIndex": 13881,
"paragraph": {
"elements": [
{
"endIndex": 13881,
"startIndex": 13855,
"textRun": {
"content": "Resolving dependencies...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 13855
},
{
"endIndex": 13913,
"paragraph": {
"elements": [
{
"endIndex": 13913,
"startIndex": 13881,
"textRun": {
"content": " async 2.8.1 (2.8.2 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 13881
},
{
"endIndex": 13927,
"paragraph": {
"elements": [
{
"endIndex": 13927,
"startIndex": 13913,
"textRun": {
"content": "+ http 0.13.3\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 13913
},
{
"endIndex": 13947,
"paragraph": {
"elements": [
{
"endIndex": 13947,
"startIndex": 13927,
"textRun": {
"content": "+ http_parser 4.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 13927
},
{
"endIndex": 13985,
"paragraph": {
"elements": [
{
"endIndex": 13985,
"startIndex": 13947,
"textRun": {
"content": " matcher 0.12.10 (0.12.11 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 13947
},
{
"endIndex": 14003,
"paragraph": {
"elements": [
{
"endIndex": 14003,
"startIndex": 13985,
"textRun": {
"content": "+ pedantic 1.11.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 13985
},
{
"endIndex": 14038,
"paragraph": {
"elements": [
{
"endIndex": 14038,
"startIndex": 14003,
"textRun": {
"content": " test_api 0.4.2 (0.4.3 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14003
},
{
"endIndex": 14062,
"paragraph": {
"elements": [
{
"endIndex": 14061,
"startIndex": 14038,
"textRun": {
"content": "Changed 3 dependencies!",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
},
{
"endIndex": 14062,
"startIndex": 14061,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14038
}
],
"endIndex": 14062,
"startIndex": 13831,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 14064,
"paragraph": {
"elements": [
{
"endIndex": 14064,
"startIndex": 14063,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 14063
},
{
"endIndex": 14177,
"paragraph": {
"elements": [
{
"endIndex": 14074,
"startIndex": 14064,
"textRun": {
"content": "Next, add ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 14091,
"startIndex": 14074,
"textRun": {
"content": "json_serializable",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dev/packages/json_serializable"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 14096,
"startIndex": 14091,
"textRun": {
"content": " and ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 14111,
"startIndex": 14096,
"textRun": {
"content": "json_annotation",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dev/packages/json_annotation"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 14175,
"startIndex": 14111,
"textRun": {
"content": " for declaring object structure for representing JSON documents.",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 14177,
"startIndex": 14175,
"textRun": {
"content": " \n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
}
}
},
"startIndex": 14064
},
{
"endIndex": 15373,
"startIndex": 14177,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 15372,
"startIndex": 14178,
"tableCells": [
{
"content": [
{
"endIndex": 14216,
"paragraph": {
"elements": [
{
"endIndex": 14216,
"startIndex": 14180,
"textRun": {
"content": "$ flutter pub add json_serializable\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14180
},
{
"endIndex": 14242,
"paragraph": {
"elements": [
{
"endIndex": 14242,
"startIndex": 14216,
"textRun": {
"content": "Resolving dependencies...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14216
},
{
"endIndex": 14271,
"paragraph": {
"elements": [
{
"endIndex": 14271,
"startIndex": 14242,
"textRun": {
"content": "+ _fe_analyzer_shared 25.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14242
},
{
"endIndex": 14288,
"paragraph": {
"elements": [
{
"endIndex": 14288,
"startIndex": 14271,
"textRun": {
"content": "+ analyzer 2.2.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14271
},
{
"endIndex": 14301,
"paragraph": {
"elements": [
{
"endIndex": 14301,
"startIndex": 14288,
"textRun": {
"content": "+ args 2.2.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14288
},
{
"endIndex": 14333,
"paragraph": {
"elements": [
{
"endIndex": 14333,
"startIndex": 14301,
"textRun": {
"content": " async 2.8.1 (2.8.2 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14301
},
{
"endIndex": 14347,
"paragraph": {
"elements": [
{
"endIndex": 14347,
"startIndex": 14333,
"textRun": {
"content": "+ build 2.1.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14333
},
{
"endIndex": 14368,
"paragraph": {
"elements": [
{
"endIndex": 14368,
"startIndex": 14347,
"textRun": {
"content": "+ build_config 1.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14347
},
{
"endIndex": 14389,
"paragraph": {
"elements": [
{
"endIndex": 14389,
"startIndex": 14368,
"textRun": {
"content": "+ checked_yaml 2.0.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14368
},
{
"endIndex": 14406,
"paragraph": {
"elements": [
{
"endIndex": 14406,
"startIndex": 14389,
"textRun": {
"content": "+ cli_util 0.3.3\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14389
},
{
"endIndex": 14422,
"paragraph": {
"elements": [
{
"endIndex": 14422,
"startIndex": 14406,
"textRun": {
"content": "+ convert 3.0.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14406
},
{
"endIndex": 14437,
"paragraph": {
"elements": [
{
"endIndex": 14437,
"startIndex": 14422,
"textRun": {
"content": "+ crypto 3.0.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14422
},
{
"endIndex": 14456,
"paragraph": {
"elements": [
{
"endIndex": 14456,
"startIndex": 14437,
"textRun": {
"content": "+ dart_style 2.0.3\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14437
},
{
"endIndex": 14469,
"paragraph": {
"elements": [
{
"endIndex": 14469,
"startIndex": 14456,
"textRun": {
"content": "+ file 6.1.2\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14456
},
{
"endIndex": 14482,
"paragraph": {
"elements": [
{
"endIndex": 14482,
"startIndex": 14469,
"textRun": {
"content": "+ glob 2.0.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14469
},
{
"endIndex": 14506,
"paragraph": {
"elements": [
{
"endIndex": 14506,
"startIndex": 14482,
"textRun": {
"content": "+ json_annotation 4.1.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14482
},
{
"endIndex": 14532,
"paragraph": {
"elements": [
{
"endIndex": 14532,
"startIndex": 14506,
"textRun": {
"content": "+ json_serializable 5.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14506
},
{
"endIndex": 14548,
"paragraph": {
"elements": [
{
"endIndex": 14548,
"startIndex": 14532,
"textRun": {
"content": "+ logging 1.0.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14532
},
{
"endIndex": 14586,
"paragraph": {
"elements": [
{
"endIndex": 14586,
"startIndex": 14548,
"textRun": {
"content": " matcher 0.12.10 (0.12.11 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14548
},
{
"endIndex": 14609,
"paragraph": {
"elements": [
{
"endIndex": 14609,
"startIndex": 14586,
"textRun": {
"content": "+ package_config 2.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14586
},
{
"endIndex": 14628,
"paragraph": {
"elements": [
{
"endIndex": 14628,
"startIndex": 14609,
"textRun": {
"content": "+ pub_semver 2.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14609
},
{
"endIndex": 14650,
"paragraph": {
"elements": [
{
"endIndex": 14650,
"startIndex": 14628,
"textRun": {
"content": "+ pubspec_parse 1.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14628
},
{
"endIndex": 14669,
"paragraph": {
"elements": [
{
"endIndex": 14669,
"startIndex": 14650,
"textRun": {
"content": "+ source_gen 1.1.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14650
},
{
"endIndex": 14691,
"paragraph": {
"elements": [
{
"endIndex": 14691,
"startIndex": 14669,
"textRun": {
"content": "+ source_helper 1.2.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14669
},
{
"endIndex": 14726,
"paragraph": {
"elements": [
{
"endIndex": 14726,
"startIndex": 14691,
"textRun": {
"content": " test_api 0.4.2 (0.4.3 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14691
},
{
"endIndex": 14742,
"paragraph": {
"elements": [
{
"endIndex": 14742,
"startIndex": 14726,
"textRun": {
"content": "+ watcher 1.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14726
},
{
"endIndex": 14755,
"paragraph": {
"elements": [
{
"endIndex": 14755,
"startIndex": 14742,
"textRun": {
"content": "+ yaml 3.1.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14742
},
{
"endIndex": 14785,
"paragraph": {
"elements": [
{
"endIndex": 14785,
"startIndex": 14755,
"textRun": {
"content": "Downloading analyzer 2.2.0...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14755
},
{
"endIndex": 14827,
"paragraph": {
"elements": [
{
"endIndex": 14827,
"startIndex": 14785,
"textRun": {
"content": "Downloading _fe_analyzer_shared 25.0.0...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14785
},
{
"endIndex": 14852,
"paragraph": {
"elements": [
{
"endIndex": 14852,
"startIndex": 14827,
"textRun": {
"content": "Changed 22 dependencies!\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14827
},
{
"endIndex": 14887,
"paragraph": {
"elements": [
{
"endIndex": 14887,
"startIndex": 14852,
"textRun": {
"content": "$ flutter pub add json_annotation \n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14852
},
{
"endIndex": 14913,
"paragraph": {
"elements": [
{
"endIndex": 14913,
"startIndex": 14887,
"textRun": {
"content": "Resolving dependencies...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14887
},
{
"endIndex": 14945,
"paragraph": {
"elements": [
{
"endIndex": 14945,
"startIndex": 14913,
"textRun": {
"content": " async 2.8.2 (2.9.0 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14913
},
{
"endIndex": 14982,
"paragraph": {
"elements": [
{
"endIndex": 14982,
"startIndex": 14945,
"textRun": {
"content": " characters 1.2.0 (1.2.1 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14945
},
{
"endIndex": 15014,
"paragraph": {
"elements": [
{
"endIndex": 15014,
"startIndex": 14982,
"textRun": {
"content": " clock 1.1.0 (1.1.1 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 14982
},
{
"endIndex": 15051,
"paragraph": {
"elements": [
{
"endIndex": 15051,
"startIndex": 15014,
"textRun": {
"content": " fake_async 1.3.0 (1.3.1 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15014
},
{
"endIndex": 15089,
"paragraph": {
"elements": [
{
"endIndex": 15089,
"startIndex": 15051,
"textRun": {
"content": " matcher 0.12.11 (0.12.12 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15051
},
{
"endIndex": 15140,
"paragraph": {
"elements": [
{
"endIndex": 15140,
"startIndex": 15089,
"textRun": {
"content": " material_color_utilities 0.1.4 (0.1.5 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15089
},
{
"endIndex": 15171,
"paragraph": {
"elements": [
{
"endIndex": 15171,
"startIndex": 15140,
"textRun": {
"content": " meta 1.7.0 (1.8.0 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15140
},
{
"endIndex": 15202,
"paragraph": {
"elements": [
{
"endIndex": 15202,
"startIndex": 15171,
"textRun": {
"content": " path 1.8.1 (1.8.2 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15171
},
{
"endIndex": 15240,
"paragraph": {
"elements": [
{
"endIndex": 15240,
"startIndex": 15202,
"textRun": {
"content": " source_span 1.8.2 (1.9.0 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15202
},
{
"endIndex": 15281,
"paragraph": {
"elements": [
{
"endIndex": 15281,
"startIndex": 15240,
"textRun": {
"content": " string_scanner 1.1.0 (1.1.1 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15240
},
{
"endIndex": 15318,
"paragraph": {
"elements": [
{
"endIndex": 15318,
"startIndex": 15281,
"textRun": {
"content": " term_glyph 1.2.0 (1.2.1 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15281
},
{
"endIndex": 15354,
"paragraph": {
"elements": [
{
"endIndex": 15354,
"startIndex": 15318,
"textRun": {
"content": " test_api 0.4.9 (0.4.12 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15318
},
{
"endIndex": 15372,
"paragraph": {
"elements": [
{
"endIndex": 15372,
"startIndex": 15354,
"textRun": {
"content": "Got dependencies!\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15354
}
],
"endIndex": 15372,
"startIndex": 14179,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 15374,
"paragraph": {
"elements": [
{
"endIndex": 15374,
"startIndex": 15373,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
}
}
},
"startIndex": 15373
},
{
"endIndex": 15493,
"paragraph": {
"elements": [
{
"endIndex": 15387,
"startIndex": 15374,
"textRun": {
"content": "Finally, add ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 15399,
"startIndex": 15387,
"textRun": {
"content": "build_runner",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dev/packages/build_runner"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 15491,
"startIndex": 15399,
"textRun": {
"content": " as a development time dependency. This will be used for code generation later in this step.",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 15493,
"startIndex": 15491,
"textRun": {
"content": " \n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
}
}
},
"startIndex": 15374
},
{
"endIndex": 16064,
"startIndex": 15493,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 16063,
"startIndex": 15494,
"tableCells": [
{
"content": [
{
"endIndex": 15533,
"paragraph": {
"elements": [
{
"endIndex": 15533,
"startIndex": 15496,
"textRun": {
"content": "$ flutter pub add --dev build_runner\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15496
},
{
"endIndex": 15559,
"paragraph": {
"elements": [
{
"endIndex": 15559,
"startIndex": 15533,
"textRun": {
"content": "Resolving dependencies...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15533
},
{
"endIndex": 15591,
"paragraph": {
"elements": [
{
"endIndex": 15591,
"startIndex": 15559,
"textRun": {
"content": " async 2.8.1 (2.8.2 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15559
},
{
"endIndex": 15612,
"paragraph": {
"elements": [
{
"endIndex": 15612,
"startIndex": 15591,
"textRun": {
"content": "+ build_daemon 3.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15591
},
{
"endIndex": 15636,
"paragraph": {
"elements": [
{
"endIndex": 15636,
"startIndex": 15612,
"textRun": {
"content": "+ build_resolvers 2.0.4\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15612
},
{
"endIndex": 15657,
"paragraph": {
"elements": [
{
"endIndex": 15657,
"startIndex": 15636,
"textRun": {
"content": "+ build_runner 2.1.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15636
},
{
"endIndex": 15683,
"paragraph": {
"elements": [
{
"endIndex": 15683,
"startIndex": 15657,
"textRun": {
"content": "+ build_runner_core 7.1.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15657
},
{
"endIndex": 15708,
"paragraph": {
"elements": [
{
"endIndex": 15708,
"startIndex": 15683,
"textRun": {
"content": "+ built_collection 5.1.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15683
},
{
"endIndex": 15728,
"paragraph": {
"elements": [
{
"endIndex": 15728,
"startIndex": 15708,
"textRun": {
"content": "+ built_value 8.1.2\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15708
},
{
"endIndex": 15749,
"paragraph": {
"elements": [
{
"endIndex": 15749,
"startIndex": 15728,
"textRun": {
"content": "+ code_builder 4.1.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15728
},
{
"endIndex": 15764,
"paragraph": {
"elements": [
{
"endIndex": 15764,
"startIndex": 15749,
"textRun": {
"content": "+ fixnum 1.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15749
},
{
"endIndex": 15795,
"paragraph": {
"elements": [
{
"endIndex": 15795,
"startIndex": 15764,
"textRun": {
"content": "+ frontend_server_client 2.1.2\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15764
},
{
"endIndex": 15810,
"paragraph": {
"elements": [
{
"endIndex": 15810,
"startIndex": 15795,
"textRun": {
"content": "+ graphs 2.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15795
},
{
"endIndex": 15836,
"paragraph": {
"elements": [
{
"endIndex": 15836,
"startIndex": 15810,
"textRun": {
"content": "+ http_multi_server 3.0.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15810
},
{
"endIndex": 15847,
"paragraph": {
"elements": [
{
"endIndex": 15847,
"startIndex": 15836,
"textRun": {
"content": "+ io 1.0.3\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15836
},
{
"endIndex": 15858,
"paragraph": {
"elements": [
{
"endIndex": 15858,
"startIndex": 15847,
"textRun": {
"content": "+ js 0.6.3\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15847
},
{
"endIndex": 15896,
"paragraph": {
"elements": [
{
"endIndex": 15896,
"startIndex": 15858,
"textRun": {
"content": " matcher 0.12.10 (0.12.11 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15858
},
{
"endIndex": 15909,
"paragraph": {
"elements": [
{
"endIndex": 15909,
"startIndex": 15896,
"textRun": {
"content": "+ mime 1.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15896
},
{
"endIndex": 15922,
"paragraph": {
"elements": [
{
"endIndex": 15922,
"startIndex": 15909,
"textRun": {
"content": "+ pool 1.5.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15909
},
{
"endIndex": 15936,
"paragraph": {
"elements": [
{
"endIndex": 15936,
"startIndex": 15922,
"textRun": {
"content": "+ shelf 1.2.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15922
},
{
"endIndex": 15961,
"paragraph": {
"elements": [
{
"endIndex": 15961,
"startIndex": 15936,
"textRun": {
"content": "+ shelf_web_socket 1.0.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15936
},
{
"endIndex": 15996,
"paragraph": {
"elements": [
{
"endIndex": 15996,
"startIndex": 15961,
"textRun": {
"content": " test_api 0.4.2 (0.4.3 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15961
},
{
"endIndex": 16011,
"paragraph": {
"elements": [
{
"endIndex": 16011,
"startIndex": 15996,
"textRun": {
"content": "+ timing 1.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 15996
},
{
"endIndex": 16038,
"paragraph": {
"elements": [
{
"endIndex": 16038,
"startIndex": 16011,
"textRun": {
"content": "+ web_socket_channel 2.1.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 16011
},
{
"endIndex": 16063,
"paragraph": {
"elements": [
{
"endIndex": 16063,
"startIndex": 16038,
"textRun": {
"content": "Changed 19 dependencies!\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 16038
}
],
"endIndex": 16063,
"startIndex": 15495,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 16065,
"paragraph": {
"elements": [
{
"endIndex": 16065,
"startIndex": 16064,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceBelow": {
"magnitude": 18.0,
"unit": "PT"
}
}
},
"startIndex": 16064
},
{
"endIndex": 16099,
"paragraph": {
"elements": [
{
"endIndex": 16099,
"startIndex": 16065,
"textRun": {
"content": "Parsing JSON with code generation\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.lrs79x3jn1mo",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 16065
},
{
"endIndex": 16291,
"paragraph": {
"elements": [
{
"endIndex": 16291,
"startIndex": 16099,
"textRun": {
"content": "You might notice that the JSON data returned from the API endpoint has a regular structure. It would be handy to generate the code to marshal that data into objects that you can use in code. \n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16099
},
{
"endIndex": 16292,
"paragraph": {
"elements": [
{
"endIndex": 16292,
"startIndex": 16291,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16291
},
{
"endIndex": 16412,
"paragraph": {
"elements": [
{
"endIndex": 16299,
"startIndex": 16292,
"textRun": {
"content": "In the ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 16306,
"startIndex": 16299,
"textRun": {
"content": "lib/src",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 16327,
"startIndex": 16306,
"textRun": {
"content": " directory, create a ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 16341,
"startIndex": 16327,
"textRun": {
"content": "locations.dart",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 16412,
"startIndex": 16341,
"textRun": {
"content": " file and describe the structure of the returned JSON data as follows:\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16292
},
{
"endIndex": 16435,
"paragraph": {
"elements": [
{
"endIndex": 16434,
"startIndex": 16412,
"textRun": {
"content": "lib/src/locations.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/master/google-maps-in-flutter/step_5/lib/src/locations.dart"
},
"underline": true
}
}
},
{
"endIndex": 16435,
"startIndex": 16434,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.vcffge4pgdix",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 16412
},
{
"endIndex": 18877,
"startIndex": 16435,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 18876,
"startIndex": 16436,
"tableCells": [
{
"content": [
{
"endIndex": 16461,
"paragraph": {
"elements": [
{
"endIndex": 16461,
"startIndex": 16438,
"textRun": {
"content": "import 'dart:convert';\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16438
},
{
"endIndex": 16462,
"paragraph": {
"elements": [
{
"endIndex": 16462,
"startIndex": 16461,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16461
},
{
"endIndex": 16504,
"paragraph": {
"elements": [
{
"endIndex": 16504,
"startIndex": 16462,
"textRun": {
"content": "import 'package:flutter/foundation.dart';\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16462
},
{
"endIndex": 16560,
"paragraph": {
"elements": [
{
"endIndex": 16560,
"startIndex": 16504,
"textRun": {
"content": "import 'package:flutter/services.dart' show rootBundle;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16504
},
{
"endIndex": 16601,
"paragraph": {
"elements": [
{
"endIndex": 16601,
"startIndex": 16560,
"textRun": {
"content": "import 'package:http/http.dart' as http;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16560
},
{
"endIndex": 16656,
"paragraph": {
"elements": [
{
"endIndex": 16656,
"startIndex": 16601,
"textRun": {
"content": "import 'package:json_annotation/json_annotation.dart';\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16601
},
{
"endIndex": 16657,
"paragraph": {
"elements": [
{
"endIndex": 16657,
"startIndex": 16656,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16656
},
{
"endIndex": 16682,
"paragraph": {
"elements": [
{
"endIndex": 16682,
"startIndex": 16657,
"textRun": {
"content": "part 'locations.g.dart';\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16657
},
{
"endIndex": 16683,
"paragraph": {
"elements": [
{
"endIndex": 16683,
"startIndex": 16682,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16682
},
{
"endIndex": 16703,
"paragraph": {
"elements": [
{
"endIndex": 16703,
"startIndex": 16683,
"textRun": {
"content": "@JsonSerializable()\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16683
},
{
"endIndex": 16718,
"paragraph": {
"elements": [
{
"endIndex": 16718,
"startIndex": 16703,
"textRun": {
"content": "class LatLng {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16703
},
{
"endIndex": 16729,
"paragraph": {
"elements": [
{
"endIndex": 16729,
"startIndex": 16718,
"textRun": {
"content": " LatLng({\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16718
},
{
"endIndex": 16752,
"paragraph": {
"elements": [
{
"endIndex": 16752,
"startIndex": 16729,
"textRun": {
"content": " required this.lat,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16729
},
{
"endIndex": 16775,
"paragraph": {
"elements": [
{
"endIndex": 16775,
"startIndex": 16752,
"textRun": {
"content": " required this.lng,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16752
},
{
"endIndex": 16781,
"paragraph": {
"elements": [
{
"endIndex": 16781,
"startIndex": 16775,
"textRun": {
"content": " });\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16775
},
{
"endIndex": 16782,
"paragraph": {
"elements": [
{
"endIndex": 16782,
"startIndex": 16781,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16781
},
{
"endIndex": 16862,
"paragraph": {
"elements": [
{
"endIndex": 16862,
"startIndex": 16782,
"textRun": {
"content": " factory LatLng.fromJson(Map<String, dynamic> json) => _$LatLngFromJson(json);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16782
},
{
"endIndex": 16919,
"paragraph": {
"elements": [
{
"endIndex": 16919,
"startIndex": 16862,
"textRun": {
"content": " Map<String, dynamic> toJson() => _$LatLngToJson(this);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16862
},
{
"endIndex": 16920,
"paragraph": {
"elements": [
{
"endIndex": 16920,
"startIndex": 16919,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16919
},
{
"endIndex": 16940,
"paragraph": {
"elements": [
{
"endIndex": 16940,
"startIndex": 16920,
"textRun": {
"content": " final double lat;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16920
},
{
"endIndex": 16960,
"paragraph": {
"elements": [
{
"endIndex": 16960,
"startIndex": 16940,
"textRun": {
"content": " final double lng;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16940
},
{
"endIndex": 16962,
"paragraph": {
"elements": [
{
"endIndex": 16962,
"startIndex": 16960,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16960
},
{
"endIndex": 16963,
"paragraph": {
"elements": [
{
"endIndex": 16963,
"startIndex": 16962,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16962
},
{
"endIndex": 16983,
"paragraph": {
"elements": [
{
"endIndex": 16983,
"startIndex": 16963,
"textRun": {
"content": "@JsonSerializable()\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16963
},
{
"endIndex": 16998,
"paragraph": {
"elements": [
{
"endIndex": 16998,
"startIndex": 16983,
"textRun": {
"content": "class Region {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16983
},
{
"endIndex": 17009,
"paragraph": {
"elements": [
{
"endIndex": 17009,
"startIndex": 16998,
"textRun": {
"content": " Region({\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16998
},
{
"endIndex": 17035,
"paragraph": {
"elements": [
{
"endIndex": 17035,
"startIndex": 17009,
"textRun": {
"content": " required this.coords,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17009
},
{
"endIndex": 17057,
"paragraph": {
"elements": [
{
"endIndex": 17057,
"startIndex": 17035,
"textRun": {
"content": " required this.id,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17035
},
{
"endIndex": 17081,
"paragraph": {
"elements": [
{
"endIndex": 17081,
"startIndex": 17057,
"textRun": {
"content": " required this.name,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17057
},
{
"endIndex": 17105,
"paragraph": {
"elements": [
{
"endIndex": 17105,
"startIndex": 17081,
"textRun": {
"content": " required this.zoom,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17081
},
{
"endIndex": 17111,
"paragraph": {
"elements": [
{
"endIndex": 17111,
"startIndex": 17105,
"textRun": {
"content": " });\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17105
},
{
"endIndex": 17112,
"paragraph": {
"elements": [
{
"endIndex": 17112,
"startIndex": 17111,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17111
},
{
"endIndex": 17192,
"paragraph": {
"elements": [
{
"endIndex": 17192,
"startIndex": 17112,
"textRun": {
"content": " factory Region.fromJson(Map<String, dynamic> json) => _$RegionFromJson(json);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17112
},
{
"endIndex": 17249,
"paragraph": {
"elements": [
{
"endIndex": 17249,
"startIndex": 17192,
"textRun": {
"content": " Map<String, dynamic> toJson() => _$RegionToJson(this);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17192
},
{
"endIndex": 17250,
"paragraph": {
"elements": [
{
"endIndex": 17250,
"startIndex": 17249,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17249
},
{
"endIndex": 17273,
"paragraph": {
"elements": [
{
"endIndex": 17273,
"startIndex": 17250,
"textRun": {
"content": " final LatLng coords;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17250
},
{
"endIndex": 17292,
"paragraph": {
"elements": [
{
"endIndex": 17292,
"startIndex": 17273,
"textRun": {
"content": " final String id;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17273
},
{
"endIndex": 17313,
"paragraph": {
"elements": [
{
"endIndex": 17313,
"startIndex": 17292,
"textRun": {
"content": " final String name;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17292
},
{
"endIndex": 17334,
"paragraph": {
"elements": [
{
"endIndex": 17334,
"startIndex": 17313,
"textRun": {
"content": " final double zoom;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17313
},
{
"endIndex": 17336,
"paragraph": {
"elements": [
{
"endIndex": 17336,
"startIndex": 17334,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17334
},
{
"endIndex": 17337,
"paragraph": {
"elements": [
{
"endIndex": 17337,
"startIndex": 17336,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17336
},
{
"endIndex": 17357,
"paragraph": {
"elements": [
{
"endIndex": 17357,
"startIndex": 17337,
"textRun": {
"content": "@JsonSerializable()\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17337
},
{
"endIndex": 17372,
"paragraph": {
"elements": [
{
"endIndex": 17372,
"startIndex": 17357,
"textRun": {
"content": "class Office {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17357
},
{
"endIndex": 17383,
"paragraph": {
"elements": [
{
"endIndex": 17383,
"startIndex": 17372,
"textRun": {
"content": " Office({\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17372
},
{
"endIndex": 17410,
"paragraph": {
"elements": [
{
"endIndex": 17410,
"startIndex": 17383,
"textRun": {
"content": " required this.address,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17383
},
{
"endIndex": 17432,
"paragraph": {
"elements": [
{
"endIndex": 17432,
"startIndex": 17410,
"textRun": {
"content": " required this.id,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17410
},
{
"endIndex": 17457,
"paragraph": {
"elements": [
{
"endIndex": 17457,
"startIndex": 17432,
"textRun": {
"content": " required this.image,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17432
},
{
"endIndex": 17480,
"paragraph": {
"elements": [
{
"endIndex": 17480,
"startIndex": 17457,
"textRun": {
"content": " required this.lat,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17457
},
{
"endIndex": 17503,
"paragraph": {
"elements": [
{
"endIndex": 17503,
"startIndex": 17480,
"textRun": {
"content": " required this.lng,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17480
},
{
"endIndex": 17527,
"paragraph": {
"elements": [
{
"endIndex": 17527,
"startIndex": 17503,
"textRun": {
"content": " required this.name,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17503
},
{
"endIndex": 17552,
"paragraph": {
"elements": [
{
"endIndex": 17552,
"startIndex": 17527,
"textRun": {
"content": " required this.phone,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17527
},
{
"endIndex": 17578,
"paragraph": {
"elements": [
{
"endIndex": 17578,
"startIndex": 17552,
"textRun": {
"content": " required this.region,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17552
},
{
"endIndex": 17584,
"paragraph": {
"elements": [
{
"endIndex": 17584,
"startIndex": 17578,
"textRun": {
"content": " });\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17578
},
{
"endIndex": 17585,
"paragraph": {
"elements": [
{
"endIndex": 17585,
"startIndex": 17584,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17584
},
{
"endIndex": 17665,
"paragraph": {
"elements": [
{
"endIndex": 17665,
"startIndex": 17585,
"textRun": {
"content": " factory Office.fromJson(Map<String, dynamic> json) => _$OfficeFromJson(json);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17585
},
{
"endIndex": 17722,
"paragraph": {
"elements": [
{
"endIndex": 17722,
"startIndex": 17665,
"textRun": {
"content": " Map<String, dynamic> toJson() => _$OfficeToJson(this);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17665
},
{
"endIndex": 17723,
"paragraph": {
"elements": [
{
"endIndex": 17723,
"startIndex": 17722,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17722
},
{
"endIndex": 17747,
"paragraph": {
"elements": [
{
"endIndex": 17747,
"startIndex": 17723,
"textRun": {
"content": " final String address;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17723
},
{
"endIndex": 17766,
"paragraph": {
"elements": [
{
"endIndex": 17766,
"startIndex": 17747,
"textRun": {
"content": " final String id;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17747
},
{
"endIndex": 17788,
"paragraph": {
"elements": [
{
"endIndex": 17788,
"startIndex": 17766,
"textRun": {
"content": " final String image;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17766
},
{
"endIndex": 17808,
"paragraph": {
"elements": [
{
"endIndex": 17808,
"startIndex": 17788,
"textRun": {
"content": " final double lat;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17788
},
{
"endIndex": 17828,
"paragraph": {
"elements": [
{
"endIndex": 17828,
"startIndex": 17808,
"textRun": {
"content": " final double lng;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17808
},
{
"endIndex": 17849,
"paragraph": {
"elements": [
{
"endIndex": 17849,
"startIndex": 17828,
"textRun": {
"content": " final String name;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17828
},
{
"endIndex": 17871,
"paragraph": {
"elements": [
{
"endIndex": 17871,
"startIndex": 17849,
"textRun": {
"content": " final String phone;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17849
},
{
"endIndex": 17894,
"paragraph": {
"elements": [
{
"endIndex": 17894,
"startIndex": 17871,
"textRun": {
"content": " final String region;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17871
},
{
"endIndex": 17896,
"paragraph": {
"elements": [
{
"endIndex": 17896,
"startIndex": 17894,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17894
},
{
"endIndex": 17897,
"paragraph": {
"elements": [
{
"endIndex": 17897,
"startIndex": 17896,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17896
},
{
"endIndex": 17917,
"paragraph": {
"elements": [
{
"endIndex": 17917,
"startIndex": 17897,
"textRun": {
"content": "@JsonSerializable()\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17897
},
{
"endIndex": 17935,
"paragraph": {
"elements": [
{
"endIndex": 17935,
"startIndex": 17917,
"textRun": {
"content": "class Locations {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17917
},
{
"endIndex": 17949,
"paragraph": {
"elements": [
{
"endIndex": 17949,
"startIndex": 17935,
"textRun": {
"content": " Locations({\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17935
},
{
"endIndex": 17976,
"paragraph": {
"elements": [
{
"endIndex": 17976,
"startIndex": 17949,
"textRun": {
"content": " required this.offices,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17949
},
{
"endIndex": 18003,
"paragraph": {
"elements": [
{
"endIndex": 18003,
"startIndex": 17976,
"textRun": {
"content": " required this.regions,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 17976
},
{
"endIndex": 18009,
"paragraph": {
"elements": [
{
"endIndex": 18009,
"startIndex": 18003,
"textRun": {
"content": " });\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18003
},
{
"endIndex": 18010,
"paragraph": {
"elements": [
{
"endIndex": 18010,
"startIndex": 18009,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18009
},
{
"endIndex": 18069,
"paragraph": {
"elements": [
{
"endIndex": 18069,
"startIndex": 18010,
"textRun": {
"content": " factory Locations.fromJson(Map<String, dynamic> json) =>\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18010
},
{
"endIndex": 18102,
"paragraph": {
"elements": [
{
"endIndex": 18102,
"startIndex": 18069,
"textRun": {
"content": " _$LocationsFromJson(json);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18069
},
{
"endIndex": 18162,
"paragraph": {
"elements": [
{
"endIndex": 18162,
"startIndex": 18102,
"textRun": {
"content": " Map<String, dynamic> toJson() => _$LocationsToJson(this);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18102
},
{
"endIndex": 18163,
"paragraph": {
"elements": [
{
"endIndex": 18163,
"startIndex": 18162,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18162
},
{
"endIndex": 18193,
"paragraph": {
"elements": [
{
"endIndex": 18193,
"startIndex": 18163,
"textRun": {
"content": " final List<Office> offices;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18163
},
{
"endIndex": 18223,
"paragraph": {
"elements": [
{
"endIndex": 18223,
"startIndex": 18193,
"textRun": {
"content": " final List<Region> regions;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18193
},
{
"endIndex": 18225,
"paragraph": {
"elements": [
{
"endIndex": 18225,
"startIndex": 18223,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18223
},
{
"endIndex": 18226,
"paragraph": {
"elements": [
{
"endIndex": 18226,
"startIndex": 18225,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18225
},
{
"endIndex": 18271,
"paragraph": {
"elements": [
{
"endIndex": 18271,
"startIndex": 18226,
"textRun": {
"content": "Future<Locations> getGoogleOffices() async {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18226
},
{
"endIndex": 18351,
"paragraph": {
"elements": [
{
"endIndex": 18351,
"startIndex": 18271,
"textRun": {
"content": " const googleLocationsURL = 'https://about.google/static/data/locations.json';\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18271
},
{
"endIndex": 18352,
"paragraph": {
"elements": [
{
"endIndex": 18352,
"startIndex": 18351,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18351
},
{
"endIndex": 18398,
"paragraph": {
"elements": [
{
"endIndex": 18398,
"startIndex": 18352,
"textRun": {
"content": " // Retrieve the locations of Google offices\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18352
},
{
"endIndex": 18406,
"paragraph": {
"elements": [
{
"endIndex": 18406,
"startIndex": 18398,
"textRun": {
"content": " try {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18398
},
{
"endIndex": 18474,
"paragraph": {
"elements": [
{
"endIndex": 18474,
"startIndex": 18406,
"textRun": {
"content": " final response = await http.get(Uri.parse(googleLocationsURL));\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18406
},
{
"endIndex": 18512,
"paragraph": {
"elements": [
{
"endIndex": 18512,
"startIndex": 18474,
"textRun": {
"content": " if (response.statusCode == 200) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18474
},
{
"endIndex": 18545,
"paragraph": {
"elements": [
{
"endIndex": 18545,
"startIndex": 18512,
"textRun": {
"content": " return Locations.fromJson(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18512
},
{
"endIndex": 18608,
"paragraph": {
"elements": [
{
"endIndex": 18608,
"startIndex": 18545,
"textRun": {
"content": " json.decode(response.body) as Map<String, dynamic>);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18545
},
{
"endIndex": 18614,
"paragraph": {
"elements": [
{
"endIndex": 18614,
"startIndex": 18608,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18608
},
{
"endIndex": 18630,
"paragraph": {
"elements": [
{
"endIndex": 18630,
"startIndex": 18614,
"textRun": {
"content": " } catch (e) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18614
},
{
"endIndex": 18652,
"paragraph": {
"elements": [
{
"endIndex": 18652,
"startIndex": 18630,
"textRun": {
"content": " if (kDebugMode) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18630
},
{
"endIndex": 18668,
"paragraph": {
"elements": [
{
"endIndex": 18668,
"startIndex": 18652,
"textRun": {
"content": " print(e);\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18652
},
{
"endIndex": 18674,
"paragraph": {
"elements": [
{
"endIndex": 18674,
"startIndex": 18668,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18668
},
{
"endIndex": 18678,
"paragraph": {
"elements": [
{
"endIndex": 18678,
"startIndex": 18674,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18674
},
{
"endIndex": 18679,
"paragraph": {
"elements": [
{
"endIndex": 18679,
"startIndex": 18678,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18678
},
{
"endIndex": 18732,
"paragraph": {
"elements": [
{
"endIndex": 18732,
"startIndex": 18679,
"textRun": {
"content": " // Fallback for when the above HTTP request fails.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18679
},
{
"endIndex": 18761,
"paragraph": {
"elements": [
{
"endIndex": 18761,
"startIndex": 18732,
"textRun": {
"content": " return Locations.fromJson(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18732
},
{
"endIndex": 18778,
"paragraph": {
"elements": [
{
"endIndex": 18778,
"startIndex": 18761,
"textRun": {
"content": " json.decode(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18761
},
{
"endIndex": 18838,
"paragraph": {
"elements": [
{
"endIndex": 18838,
"startIndex": 18778,
"textRun": {
"content": " await rootBundle.loadString('assets/locations.json'),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18778
},
{
"endIndex": 18869,
"paragraph": {
"elements": [
{
"endIndex": 18869,
"startIndex": 18838,
"textRun": {
"content": " ) as Map<String, dynamic>,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18838
},
{
"endIndex": 18874,
"paragraph": {
"elements": [
{
"endIndex": 18874,
"startIndex": 18869,
"textRun": {
"content": " );\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18869
},
{
"endIndex": 18876,
"paragraph": {
"elements": [
{
"endIndex": 18876,
"startIndex": 18874,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 18874
}
],
"endIndex": 18876,
"startIndex": 16437,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 18878,
"paragraph": {
"elements": [
{
"endIndex": 18878,
"startIndex": 18877,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 18877
},
{
"endIndex": 19156,
"paragraph": {
"elements": [
{
"endIndex": 19019,
"startIndex": 18878,
"textRun": {
"content": "Once you’ve added this code, your IDE (if you are using one) should display some red squiggles, as it references a nonexistent sibling file, ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 19036,
"startIndex": 19019,
"textRun": {
"content": "locations.g.dart.",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 19142,
"startIndex": 19036,
"textRun": {
"content": " This generated file converts between untyped JSON structures and named objects. Create it by running the ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 19154,
"startIndex": 19142,
"textRun": {
"content": "build_runner",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 19156,
"startIndex": 19154,
"textRun": {
"content": ":\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 18878
},
{
"endIndex": 19157,
"paragraph": {
"elements": [
{
"endIndex": 19157,
"startIndex": 19156,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 19156
},
{
"endIndex": 20304,
"startIndex": 19157,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 20303,
"startIndex": 19158,
"tableCells": [
{
"content": [
{
"endIndex": 19226,
"paragraph": {
"elements": [
{
"endIndex": 19162,
"startIndex": 19160,
"textRun": {
"content": "$ ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
},
{
"endIndex": 19226,
"startIndex": 19162,
"textRun": {
"content": "flutter pub run build_runner build --delete-conflicting-outputs\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19160
},
{
"endIndex": 19260,
"paragraph": {
"elements": [
{
"endIndex": 19260,
"startIndex": 19226,
"textRun": {
"content": "[INFO] Generating build script...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19226
},
{
"endIndex": 19313,
"paragraph": {
"elements": [
{
"endIndex": 19313,
"startIndex": 19260,
"textRun": {
"content": "[INFO] Generating build script completed, took 357ms\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19260
},
{
"endIndex": 19314,
"paragraph": {
"elements": [
{
"endIndex": 19314,
"startIndex": 19313,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19313
},
{
"endIndex": 19358,
"paragraph": {
"elements": [
{
"endIndex": 19358,
"startIndex": 19314,
"textRun": {
"content": "[INFO] Creating build script snapshot......\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19314
},
{
"endIndex": 19421,
"paragraph": {
"elements": [
{
"endIndex": 19421,
"startIndex": 19358,
"textRun": {
"content": "[INFO] Creating build script snapshot... completed, took 10.5s\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19358
},
{
"endIndex": 19422,
"paragraph": {
"elements": [
{
"endIndex": 19422,
"startIndex": 19421,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19421
},
{
"endIndex": 19585,
"paragraph": {
"elements": [
{
"endIndex": 19585,
"startIndex": 19422,
"textRun": {
"content": "[INFO] There was output on stdout while compiling the build script snapshot, run with `--verbose` to see it (you will need to run a `clean` first to re-snapshot).\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19422
},
{
"endIndex": 19586,
"paragraph": {
"elements": [
{
"endIndex": 19586,
"startIndex": 19585,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19585
},
{
"endIndex": 19613,
"paragraph": {
"elements": [
{
"endIndex": 19613,
"startIndex": 19586,
"textRun": {
"content": "[INFO] Initializing inputs\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19586
},
{
"endIndex": 19648,
"paragraph": {
"elements": [
{
"endIndex": 19648,
"startIndex": 19613,
"textRun": {
"content": "[INFO] Building new asset graph...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19613
},
{
"endIndex": 19702,
"paragraph": {
"elements": [
{
"endIndex": 19702,
"startIndex": 19648,
"textRun": {
"content": "[INFO] Building new asset graph completed, took 646ms\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19648
},
{
"endIndex": 19703,
"paragraph": {
"elements": [
{
"endIndex": 19703,
"startIndex": 19702,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19702
},
{
"endIndex": 19759,
"paragraph": {
"elements": [
{
"endIndex": 19759,
"startIndex": 19703,
"textRun": {
"content": "[INFO] Checking for unexpected pre-existing outputs....\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19703
},
{
"endIndex": 19825,
"paragraph": {
"elements": [
{
"endIndex": 19825,
"startIndex": 19759,
"textRun": {
"content": "[INFO] Deleting 1 declared outputs which already existed on disk.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19759
},
{
"endIndex": 19898,
"paragraph": {
"elements": [
{
"endIndex": 19898,
"startIndex": 19825,
"textRun": {
"content": "[INFO] Checking for unexpected pre-existing outputs. completed, took 3ms\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19825
},
{
"endIndex": 19899,
"paragraph": {
"elements": [
{
"endIndex": 19899,
"startIndex": 19898,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19898
},
{
"endIndex": 19923,
"paragraph": {
"elements": [
{
"endIndex": 19923,
"startIndex": 19899,
"textRun": {
"content": "[INFO] Running build...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19899
},
{
"endIndex": 19956,
"paragraph": {
"elements": [
{
"endIndex": 19956,
"startIndex": 19923,
"textRun": {
"content": "[INFO] Generating SDK summary...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19923
},
{
"endIndex": 20000,
"paragraph": {
"elements": [
{
"endIndex": 20000,
"startIndex": 19956,
"textRun": {
"content": "[INFO] 3.4s elapsed, 0/3 actions completed.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19956
},
{
"endIndex": 20051,
"paragraph": {
"elements": [
{
"endIndex": 20051,
"startIndex": 20000,
"textRun": {
"content": "[INFO] Generating SDK summary completed, took 3.4s\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 20000
},
{
"endIndex": 20052,
"paragraph": {
"elements": [
{
"endIndex": 20052,
"startIndex": 20051,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 20051
},
{
"endIndex": 20096,
"paragraph": {
"elements": [
{
"endIndex": 20096,
"startIndex": 20052,
"textRun": {
"content": "[INFO] 4.7s elapsed, 2/3 actions completed.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 20052
},
{
"endIndex": 20138,
"paragraph": {
"elements": [
{
"endIndex": 20138,
"startIndex": 20096,
"textRun": {
"content": "[INFO] Running build completed, took 4.7s\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 20096
},
{
"endIndex": 20139,
"paragraph": {
"elements": [
{
"endIndex": 20139,
"startIndex": 20138,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 20138
},
{
"endIndex": 20184,
"paragraph": {
"elements": [
{
"endIndex": 20184,
"startIndex": 20139,
"textRun": {
"content": "[INFO] Caching finalized dependency graph...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 20139
},
{
"endIndex": 20247,
"paragraph": {
"elements": [
{
"endIndex": 20247,
"startIndex": 20184,
"textRun": {
"content": "[INFO] Caching finalized dependency graph completed, took 36ms\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 20184
},
{
"endIndex": 20248,
"paragraph": {
"elements": [
{
"endIndex": 20248,
"startIndex": 20247,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 20247
},
{
"endIndex": 20303,
"paragraph": {
"elements": [
{
"endIndex": 20302,
"startIndex": 20248,
"textRun": {
"content": "[INFO] Succeeded after 4.8s with 2 outputs (7 actions)",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
},
{
"endIndex": 20303,
"startIndex": 20302,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 20248
}
],
"endIndex": 20303,
"startIndex": 19159,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 20305,
"paragraph": {
"elements": [
{
"endIndex": 20305,
"startIndex": 20304,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 20304
},
{
"endIndex": 20741,
"paragraph": {
"elements": [
{
"endIndex": 20417,
"startIndex": 20305,
"textRun": {
"content": "Your code should now analyze cleanly again. Next, we should add in the fallback locations.json file used in the ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 20433,
"startIndex": 20417,
"textRun": {
"content": "getGoogleOffices",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 20741,
"startIndex": 20433,
"textRun": {
"content": " function. One of the reasons for including this fallback is that the static data being loaded in this function is served without CORS headers, and thus will fail to load in a web browser. The Android and iOS Flutter apps don’t need CORS headers, but mobile data access can be finicky at the best of times. \n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 20305
},
{
"endIndex": 20742,
"paragraph": {
"elements": [
{
"endIndex": 20742,
"startIndex": 20741,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 20741
},
{
"endIndex": 20923,
"paragraph": {
"elements": [
{
"endIndex": 20754,
"startIndex": 20742,
"textRun": {
"content": "Navigate to ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 20801,
"startIndex": 20754,
"textRun": {
"content": "https://about.google/static/data/locations.json",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://about.google/static/data/locations.json"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 20923,
"startIndex": 20801,
"textRun": {
"content": " in your browser, and save the contents into the asset directory. Alternatively, you can use the command line as follows.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 20742
},
{
"endIndex": 20924,
"paragraph": {
"elements": [
{
"endIndex": 20924,
"startIndex": 20923,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 20923
},
{
"endIndex": 21265,
"startIndex": 20924,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 21264,
"startIndex": 20925,
"tableCells": [
{
"content": [
{
"endIndex": 20942,
"paragraph": {
"elements": [
{
"endIndex": 20942,
"startIndex": 20927,
"textRun": {
"content": "$ mkdir assets\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 20927
},
{
"endIndex": 20954,
"paragraph": {
"elements": [
{
"endIndex": 20954,
"startIndex": 20942,
"textRun": {
"content": "$ cd assets\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 20942
},
{
"endIndex": 21027,
"paragraph": {
"elements": [
{
"endIndex": 21027,
"startIndex": 20954,
"textRun": {
"content": "$ curl -o locations.json https://about.google/static/data/locations.json\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 20954
},
{
"endIndex": 21107,
"paragraph": {
"elements": [
{
"endIndex": 21107,
"startIndex": 21027,
"textRun": {
"content": " % Total % Received % Xferd Average Speed Time Time Time Current\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21027
},
{
"endIndex": 21185,
"paragraph": {
"elements": [
{
"endIndex": 21185,
"startIndex": 21107,
"textRun": {
"content": " Dload Upload Total Spent Left Speed\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21107
},
{
"endIndex": 21264,
"paragraph": {
"elements": [
{
"endIndex": 21263,
"startIndex": 21185,
"textRun": {
"content": "100 30348 100 30348 0 0 75492 0 --:--:-- --:--:-- --:--:-- 75492",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
},
{
"endIndex": 21264,
"startIndex": 21263,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21185
}
],
"endIndex": 21264,
"startIndex": 20926,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 21266,
"paragraph": {
"elements": [
{
"endIndex": 21266,
"startIndex": 21265,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 21265
},
{
"endIndex": 21368,
"paragraph": {
"elements": [
{
"endIndex": 21349,
"startIndex": 21266,
"textRun": {
"content": "Now that you have the asset file downloaded, add it to the flutter section of your ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 21361,
"startIndex": 21349,
"textRun": {
"content": "pubspec.yaml",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 21368,
"startIndex": 21361,
"textRun": {
"content": " file.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 21266
},
{
"endIndex": 21382,
"paragraph": {
"elements": [
{
"endIndex": 21380,
"startIndex": 21368,
"textRun": {
"content": "pubspec.yaml",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/master/google-maps-in-flutter/step_5/pubspec.yaml"
},
"underline": true
}
}
},
{
"endIndex": 21382,
"startIndex": 21380,
"textRun": {
"content": " \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.z6mljexlaggc",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 21368
},
{
"endIndex": 21463,
"startIndex": 21382,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 21462,
"startIndex": 21383,
"tableCells": [
{
"content": [
{
"endIndex": 21394,
"paragraph": {
"elements": [
{
"endIndex": 21394,
"startIndex": 21385,
"textRun": {
"content": "flutter:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21385
},
{
"endIndex": 21423,
"paragraph": {
"elements": [
{
"endIndex": 21423,
"startIndex": 21394,
"textRun": {
"content": " uses-material-design: true\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21394
},
{
"endIndex": 21424,
"paragraph": {
"elements": [
{
"endIndex": 21424,
"startIndex": 21423,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21423
},
{
"endIndex": 21434,
"paragraph": {
"elements": [
{
"endIndex": 21434,
"startIndex": 21424,
"textRun": {
"content": " assets:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21424
},
{
"endIndex": 21462,
"paragraph": {
"elements": [
{
"endIndex": 21462,
"startIndex": 21434,
"textRun": {
"content": " - assets/locations.json\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": false,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21434
}
],
"endIndex": 21462,
"startIndex": 21384,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 21464,
"paragraph": {
"elements": [
{
"endIndex": 21464,
"startIndex": 21463,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21463
},
{
"endIndex": 21465,
"paragraph": {
"elements": [
{
"endIndex": 21465,
"startIndex": 21464,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 21464
},
{
"endIndex": 21574,
"paragraph": {
"elements": [
{
"endIndex": 21476,
"startIndex": 21465,
"textRun": {
"content": "Modify the ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 21485,
"startIndex": 21476,
"textRun": {
"content": "main.dart",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 21574,
"startIndex": 21485,
"textRun": {
"content": " file to request the map data, and then use the returned info to add offices to the map:\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 21465
},
{
"endIndex": 21588,
"paragraph": {
"elements": [
{
"endIndex": 21587,
"startIndex": 21574,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/master/google-maps-in-flutter/step_5/lib/main.dart"
},
"underline": true
}
}
},
{
"endIndex": 21588,
"startIndex": 21587,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.tkosencotov2",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 21574
},
{
"endIndex": 23112,
"startIndex": 21588,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 23111,
"startIndex": 21589,
"tableCells": [
{
"content": [
{
"endIndex": 21631,
"paragraph": {
"elements": [
{
"endIndex": 21631,
"startIndex": 21591,
"textRun": {
"content": "import 'package:flutter/material.dart';\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21591
},
{
"endIndex": 21694,
"paragraph": {
"elements": [
{
"endIndex": 21694,
"startIndex": 21631,
"textRun": {
"content": "import 'package:google_maps_flutter/google_maps_flutter.dart';\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21631
},
{
"endIndex": 21736,
"paragraph": {
"elements": [
{
"endIndex": 21736,
"startIndex": 21694,
"textRun": {
"content": "import 'src/locations.dart' as locations;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21694
},
{
"endIndex": 21737,
"paragraph": {
"elements": [
{
"endIndex": 21737,
"startIndex": 21736,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21736
},
{
"endIndex": 21751,
"paragraph": {
"elements": [
{
"endIndex": 21751,
"startIndex": 21737,
"textRun": {
"content": "void main() {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21737
},
{
"endIndex": 21776,
"paragraph": {
"elements": [
{
"endIndex": 21776,
"startIndex": 21751,
"textRun": {
"content": " runApp(const MyApp());\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21751
},
{
"endIndex": 21778,
"paragraph": {
"elements": [
{
"endIndex": 21778,
"startIndex": 21776,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21776
},
{
"endIndex": 21779,
"paragraph": {
"elements": [
{
"endIndex": 21779,
"startIndex": 21778,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21778
},
{
"endIndex": 21816,
"paragraph": {
"elements": [
{
"endIndex": 21816,
"startIndex": 21779,
"textRun": {
"content": "class MyApp extends StatefulWidget {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21779
},
{
"endIndex": 21844,
"paragraph": {
"elements": [
{
"endIndex": 21844,
"startIndex": 21816,
"textRun": {
"content": " const MyApp({super.key});\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21816
},
{
"endIndex": 21845,
"paragraph": {
"elements": [
{
"endIndex": 21845,
"startIndex": 21844,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21844
},
{
"endIndex": 21857,
"paragraph": {
"elements": [
{
"endIndex": 21857,
"startIndex": 21845,
"textRun": {
"content": " @override\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21845
},
{
"endIndex": 21904,
"paragraph": {
"elements": [
{
"endIndex": 21904,
"startIndex": 21857,
"textRun": {
"content": " State<MyApp> createState() => _MyAppState();\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21857
},
{
"endIndex": 21906,
"paragraph": {
"elements": [
{
"endIndex": 21906,
"startIndex": 21904,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21904
},
{
"endIndex": 21907,
"paragraph": {
"elements": [
{
"endIndex": 21907,
"startIndex": 21906,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21906
},
{
"endIndex": 21948,
"paragraph": {
"elements": [
{
"endIndex": 21948,
"startIndex": 21907,
"textRun": {
"content": "class _MyAppState extends State<MyApp> {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21907
},
{
"endIndex": 21991,
"paragraph": {
"elements": [
{
"endIndex": 21991,
"startIndex": 21948,
"textRun": {
"content": " final Map<String, Marker> _markers = {};\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21948
},
{
"endIndex": 22060,
"paragraph": {
"elements": [
{
"endIndex": 22060,
"startIndex": 21991,
"textRun": {
"content": " Future<void> _onMapCreated(GoogleMapController controller) async {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 21991
},
{
"endIndex": 22122,
"paragraph": {
"elements": [
{
"endIndex": 22122,
"startIndex": 22060,
"textRun": {
"content": " final googleOffices = await locations.getGoogleOffices();\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22060
},
{
"endIndex": 22140,
"paragraph": {
"elements": [
{
"endIndex": 22140,
"startIndex": 22122,
"textRun": {
"content": " setState(() {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22122
},
{
"endIndex": 22164,
"paragraph": {
"elements": [
{
"endIndex": 22164,
"startIndex": 22140,
"textRun": {
"content": " _markers.clear();\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22140
},
{
"endIndex": 22216,
"paragraph": {
"elements": [
{
"endIndex": 22216,
"startIndex": 22164,
"textRun": {
"content": " for (final office in googleOffices.offices) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22164
},
{
"endIndex": 22247,
"paragraph": {
"elements": [
{
"endIndex": 22247,
"startIndex": 22216,
"textRun": {
"content": " final marker = Marker(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22216
},
{
"endIndex": 22290,
"paragraph": {
"elements": [
{
"endIndex": 22290,
"startIndex": 22247,
"textRun": {
"content": " markerId: MarkerId(office.name),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22247
},
{
"endIndex": 22342,
"paragraph": {
"elements": [
{
"endIndex": 22342,
"startIndex": 22290,
"textRun": {
"content": " position: LatLng(office.lat, office.lng),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22290
},
{
"endIndex": 22376,
"paragraph": {
"elements": [
{
"endIndex": 22376,
"startIndex": 22342,
"textRun": {
"content": " infoWindow: InfoWindow(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22342
},
{
"endIndex": 22408,
"paragraph": {
"elements": [
{
"endIndex": 22408,
"startIndex": 22376,
"textRun": {
"content": " title: office.name,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22376
},
{
"endIndex": 22445,
"paragraph": {
"elements": [
{
"endIndex": 22445,
"startIndex": 22408,
"textRun": {
"content": " snippet: office.address,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22408
},
{
"endIndex": 22458,
"paragraph": {
"elements": [
{
"endIndex": 22458,
"startIndex": 22445,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22445
},
{
"endIndex": 22469,
"paragraph": {
"elements": [
{
"endIndex": 22469,
"startIndex": 22458,
"textRun": {
"content": " );\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22458
},
{
"endIndex": 22509,
"paragraph": {
"elements": [
{
"endIndex": 22509,
"startIndex": 22469,
"textRun": {
"content": " _markers[office.name] = marker;\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22469
},
{
"endIndex": 22517,
"paragraph": {
"elements": [
{
"endIndex": 22517,
"startIndex": 22509,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22509
},
{
"endIndex": 22525,
"paragraph": {
"elements": [
{
"endIndex": 22525,
"startIndex": 22517,
"textRun": {
"content": " });\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22517
},
{
"endIndex": 22529,
"paragraph": {
"elements": [
{
"endIndex": 22529,
"startIndex": 22525,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22525
},
{
"endIndex": 22530,
"paragraph": {
"elements": [
{
"endIndex": 22530,
"startIndex": 22529,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22529
},
{
"endIndex": 22542,
"paragraph": {
"elements": [
{
"endIndex": 22542,
"startIndex": 22530,
"textRun": {
"content": " @override\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22530
},
{
"endIndex": 22581,
"paragraph": {
"elements": [
{
"endIndex": 22581,
"startIndex": 22542,
"textRun": {
"content": " Widget build(BuildContext context) {\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22542
},
{
"endIndex": 22605,
"paragraph": {
"elements": [
{
"endIndex": 22605,
"startIndex": 22581,
"textRun": {
"content": " return MaterialApp(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22581
},
{
"endIndex": 22629,
"paragraph": {
"elements": [
{
"endIndex": 22629,
"startIndex": 22605,
"textRun": {
"content": " theme: ThemeData(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22605
},
{
"endIndex": 22657,
"paragraph": {
"elements": [
{
"endIndex": 22657,
"startIndex": 22629,
"textRun": {
"content": " useMaterial3: true,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22629
},
{
"endIndex": 22701,
"paragraph": {
"elements": [
{
"endIndex": 22701,
"startIndex": 22657,
"textRun": {
"content": " colorSchemeSeed: Colors.green[700],\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22657
},
{
"endIndex": 22710,
"paragraph": {
"elements": [
{
"endIndex": 22710,
"startIndex": 22701,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22701
},
{
"endIndex": 22732,
"paragraph": {
"elements": [
{
"endIndex": 22732,
"startIndex": 22710,
"textRun": {
"content": " home: Scaffold(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22710
},
{
"endIndex": 22756,
"paragraph": {
"elements": [
{
"endIndex": 22756,
"startIndex": 22732,
"textRun": {
"content": " appBar: AppBar(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22732
},
{
"endIndex": 22812,
"paragraph": {
"elements": [
{
"endIndex": 22812,
"startIndex": 22756,
"textRun": {
"content": " title: const Text('Google Office Locations'),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22756
},
{
"endIndex": 22836,
"paragraph": {
"elements": [
{
"endIndex": 22836,
"startIndex": 22812,
"textRun": {
"content": " elevation: 2,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22812
},
{
"endIndex": 22847,
"paragraph": {
"elements": [
{
"endIndex": 22847,
"startIndex": 22836,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22836
},
{
"endIndex": 22872,
"paragraph": {
"elements": [
{
"endIndex": 22872,
"startIndex": 22847,
"textRun": {
"content": " body: GoogleMap(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22847
},
{
"endIndex": 22911,
"paragraph": {
"elements": [
{
"endIndex": 22911,
"startIndex": 22872,
"textRun": {
"content": " onMapCreated: _onMapCreated,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22872
},
{
"endIndex": 22966,
"paragraph": {
"elements": [
{
"endIndex": 22966,
"startIndex": 22911,
"textRun": {
"content": " initialCameraPosition: const CameraPosition(\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22911
},
{
"endIndex": 23000,
"paragraph": {
"elements": [
{
"endIndex": 23000,
"startIndex": 22966,
"textRun": {
"content": " target: LatLng(0, 0),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 22966
},
{
"endIndex": 23021,
"paragraph": {
"elements": [
{
"endIndex": 23021,
"startIndex": 23000,
"textRun": {
"content": " zoom: 2,\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23000
},
{
"endIndex": 23034,
"paragraph": {
"elements": [
{
"endIndex": 23034,
"startIndex": 23021,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23021
},
{
"endIndex": 23078,
"paragraph": {
"elements": [
{
"endIndex": 23078,
"startIndex": 23034,
"textRun": {
"content": " markers: _markers.values.toSet(),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23034
},
{
"endIndex": 23089,
"paragraph": {
"elements": [
{
"endIndex": 23089,
"startIndex": 23078,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23078
},
{
"endIndex": 23098,
"paragraph": {
"elements": [
{
"endIndex": 23098,
"startIndex": 23089,
"textRun": {
"content": " ),\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23089
},
{
"endIndex": 23105,
"paragraph": {
"elements": [
{
"endIndex": 23105,
"startIndex": 23098,
"textRun": {
"content": " );\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23098
},
{
"endIndex": 23109,
"paragraph": {
"elements": [
{
"endIndex": 23109,
"startIndex": 23105,
"textRun": {
"content": " }\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23105
},
{
"endIndex": 23111,
"paragraph": {
"elements": [
{
"endIndex": 23111,
"startIndex": 23109,
"textRun": {
"content": "}\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23109
}
],
"endIndex": 23111,
"startIndex": 21590,
"tableCellStyle": {
"backgroundColor": {},
"columnSpan": 1,
"contentAlignment": "TOP",
"paddingBottom": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingLeft": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingRight": {
"magnitude": 5.0,
"unit": "PT"
},
"paddingTop": {
"magnitude": 5.0,
"unit": "PT"
},
"rowSpan": 1
}
}
],
"tableRowStyle": {
"minRowHeight": {
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 23113,
"paragraph": {
"elements": [
{
"endIndex": 23113,
"startIndex": 23112,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23112
},
{
"endIndex": 23153,
"paragraph": {
"elements": [
{
"endIndex": 23153,
"startIndex": 23113,
"textRun": {
"content": "This code performs several operations: \n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23113
},
{
"endIndex": 23154,
"paragraph": {
"elements": [
{
"endIndex": 23154,
"startIndex": 23153,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23153
},
{
"endIndex": 23455,
"paragraph": {
"bullet": {
"listId": "kix.rza4cz1vbnb5",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false
}
},
"elements": [
{
"endIndex": 23157,
"startIndex": 23154,
"textRun": {
"content": "In ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23170,
"startIndex": 23157,
"textRun": {
"content": "_onMapCreated",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23226,
"startIndex": 23170,
"textRun": {
"content": ", it uses the JSON parsing code from the previous step, ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23231,
"startIndex": 23226,
"textRun": {
"content": "await",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23295,
"startIndex": 23231,
"textRun": {
"content": "ing until it’s loaded. It then uses the returned data to create ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23301,
"startIndex": 23295,
"textRun": {
"content": "Marker",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23312,
"startIndex": 23301,
"textRun": {
"content": "s inside a ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23322,
"startIndex": 23312,
"textRun": {
"content": "setState()",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23455,
"startIndex": 23322,
"textRun": {
"content": " callback. Once the app receives new markers, setState flags Flutter to repaint the screen, causing the office locations to display.\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23154
},
{
"endIndex": 23456,
"paragraph": {
"elements": [
{
"endIndex": 23456,
"startIndex": 23455,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23455
},
{
"endIndex": 23658,
"paragraph": {
"bullet": {
"listId": "kix.jah968f0rvh1",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false
}
},
"elements": [
{
"endIndex": 23484,
"startIndex": 23456,
"textRun": {
"content": "The markers are stored in a ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23487,
"startIndex": 23484,
"textRun": {
"content": "Map",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23516,
"startIndex": 23487,
"textRun": {
"content": " that is associated with the ",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23525,
"startIndex": 23516,
"textRun": {
"content": "GoogleMap",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23658,
"startIndex": 23525,
"textRun": {
"content": " widget. This links the markers to the correct map. You could, of course, have multiple maps and display different markers in each. \n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23456
},
{
"endIndex": 23660,
"paragraph": {
"elements": [
{
"endIndex": 23659,
"inlineObjectElement": {
"inlineObjectId": "kix.ez1fb9v1361v",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"startIndex": 23658
},
{
"endIndex": 23660,
"startIndex": 23659,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23658
},
{
"endIndex": 23661,
"paragraph": {
"elements": [
{
"endIndex": 23661,
"startIndex": 23660,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23660
},
{
"endIndex": 23950,
"paragraph": {
"elements": [
{
"endIndex": 23950,
"startIndex": 23661,
"textRun": {
"content": "Here’s a screenshot of what you have accomplished. There are many interesting additions that can be made at this point. For example, you could add a list view of the offices that moves and zooms the map when the user clicks an office but, as they say, this exercise is left to the reader!\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23661
},
{
"endIndex": 23951,
"paragraph": {
"elements": [
{
"endIndex": 23951,
"startIndex": 23950,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23950
},
{
"endIndex": 23953,
"paragraph": {
"elements": [
{
"endIndex": 23952,
"horizontalRule": {
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"startIndex": 23951
},
{
"endIndex": 23953,
"startIndex": 23952,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 23951
},
{
"endIndex": 23964,
"paragraph": {
"elements": [
{
"endIndex": 23963,
"startIndex": 23953,
"textRun": {
"content": "Next steps",
"textStyle": {
"fontSize": {
"magnitude": 18.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
}
},
{
"endIndex": 23964,
"startIndex": 23963,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 20.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.wyjmgdlwi2kp",
"namedStyleType": "HEADING_1",
"pageBreakBefore": false
}
},
"startIndex": 23953
},
{
"endIndex": 23979,
"paragraph": {
"elements": [
{
"endIndex": 23978,
"startIndex": 23964,
"textRun": {
"content": "Duration: 0:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23979,
"startIndex": 23978,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23964
},
{
"endIndex": 23996,
"paragraph": {
"elements": [
{
"endIndex": 23996,
"startIndex": 23979,
"textRun": {
"content": "Congratulations!\n",
"textStyle": {
"bold": false,
"fontSize": {
"magnitude": 16.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.4w8rovwn8ql",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 18.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 6.0,
"unit": "PT"
}
}
},
"startIndex": 23979
},
{
"endIndex": 24123,
"paragraph": {
"elements": [
{
"endIndex": 24123,
"startIndex": 23996,
"textRun": {
"content": "You have completed the codelab and have built a Flutter app with a Google Map! You’ve also interacted with a JSON Web Service.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23996
},
{
"endIndex": 24140,
"paragraph": {
"elements": [
{
"endIndex": 24140,
"startIndex": 24123,
"textRun": {
"content": "Other next steps\n",
"textStyle": {
"bold": false,
"fontSize": {
"magnitude": 16.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.8ahw5cvmt2v7",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 18.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 6.0,
"unit": "PT"
}
}
},
"startIndex": 24123
},
{
"endIndex": 24386,
"paragraph": {
"elements": [
{
"endIndex": 24386,
"startIndex": 24140,
"textRun": {
"content": "This codelab has built an experience to visualise a number of points on a map. There are a number of mobile apps that build on this capability to serve a lot of different user needs. There are other resources that can help you take this further:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 24140
},
{
"endIndex": 24466,
"paragraph": {
"bullet": {
"listId": "kix.ed3ilj3kkhq2",
"textStyle": {
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 24432,
"startIndex": 24386,
"textRun": {
"content": "Build Mobile Apps With Flutter and Google Maps",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://www.youtube.com/watch?v=RpQLFAFqMlw"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 24466,
"startIndex": 24432,
"textRun": {
"content": " (a talk given at Cloud Next '19)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 24386
},
{
"endIndex": 24633,
"paragraph": {
"bullet": {
"listId": "kix.ed3ilj3kkhq2",
"textStyle": {
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 24483,
"startIndex": 24466,
"textRun": {
"content": "Hadrien Lejard’s ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 24505,
"startIndex": 24483,
"textRun": {
"content": "google_maps_webservice",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dev/packages/google_maps_webservice"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 24561,
"startIndex": 24505,
"textRun": {
"content": " package which makes the Google Maps Web Services, like ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 24575,
"startIndex": 24561,
"textRun": {
"content": "Directions API",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://developers.google.com/maps/documentation/directions/start"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 24577,
"startIndex": 24575,
"textRun": {
"content": ", ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 24596,
"startIndex": 24577,
"textRun": {
"content": "Distance Matrix API",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://developers.google.com/maps/documentation/distance-matrix/start"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 24602,
"startIndex": 24596,
"textRun": {
"content": ", and ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 24612,
"startIndex": 24602,
"textRun": {
"content": "Places API",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://cloud.google.com/maps-platform/places/"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 24633,
"startIndex": 24612,
"textRun": {
"content": " really easy to use.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 24466
},
{
"endIndex": 24795,
"paragraph": {
"bullet": {
"listId": "kix.8budch7w7arn",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 24710,
"startIndex": 24633,
"textRun": {
"content": "If you want to look at different options for using an API via JSON REST, see ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 24738,
"startIndex": 24710,
"textRun": {
"content": "Andrew Brogdon’s Medium post",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://medium.com/flutter-io/some-options-for-deserializing-json-with-flutter-7481325a4450"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 24795,
"startIndex": 24738,
"textRun": {
"content": " for a range of options for working with JSON REST APIs.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 24633
},
{
"endIndex": 24796,
"paragraph": {
"elements": [
{
"endIndex": 24796,
"startIndex": 24795,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 24795
},
{
"endIndex": 24797,
"paragraph": {
"elements": [
{
"endIndex": 24797,
"startIndex": 24796,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 24796
}
]
},
"documentId": "1kwYB2RE1EXYMOt7F5fm-0nrY6BA1AyWsBXz2vlfTfxA",
"documentStyle": {
"background": {
"color": {}
},
"marginBottom": {
"magnitude": 72.0,
"unit": "PT"
},
"marginFooter": {
"magnitude": 36.0,
"unit": "PT"
},
"marginHeader": {
"magnitude": 36.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 72.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 72.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 72.0,
"unit": "PT"
},
"pageNumberStart": 1,
"pageSize": {
"height": {
"magnitude": 792.0,
"unit": "PT"
},
"width": {
"magnitude": 612.0,
"unit": "PT"
}
}
},
"inlineObjects": {
"kix.1p75kdspyuxq": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh6.googleusercontent.com/P1r5JJ2p10_bnJI4mYUfKiGZ7wkmVH2a1329yqfsQa_s3Cg79Z2RcHD0CnZvXBSFKKDkybK1wZRGqgBpA68LHKJiI82xNzOT_pEz5QYvtqqKFeyqZ1BCG7MbIdTwmud5fMuSxjQTzKuGqs_oWe2HOLq-UBUzxlFVIFQOxnSJvw-8Km7gsHx7DSBGxBmrhg4799YKyk4",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 401.0,
"unit": "PT"
},
"width": {
"magnitude": 223.5,
"unit": "PT"
}
}
}
},
"objectId": "kix.1p75kdspyuxq"
},
"kix.89ot02lt7ssg": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh4.googleusercontent.com/UJk6BfNwtRnM9jE4MRvQopq3qCGYCLRtNkXJFgfGfbvEkylQ8z2P6PztSvqubU7v6sCOTaKi3rbWLzmoyTM_noJlh7whLqeOApQ6EAor5OWt_MRB3pWumqXprntUoZEknuSs1IrVHX29Pu2wQ0x_88iozQaR1YHGWVFzgK1tUaXKX1oP7vZKTMpacfidaCQ5Ub-hDjE",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 442.875,
"unit": "PT"
},
"width": {
"magnitude": 247.1860465116279,
"unit": "PT"
}
}
}
},
"objectId": "kix.89ot02lt7ssg"
},
"kix.ez1fb9v1361v": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh6.googleusercontent.com/nXSNC0_slaui5AScJTilWsKfDD5DkOzOPfXKZueIbh4Q28g32WGKjGrtxG524zgbNBcBlyVIuyporikCpA_paPbTJ33Q3ufhKV4LFsqxzSdvE_XlYIGsYpgsnaXdT-xZT4XHAV3ejoK-riQJLWaWxuhLtDGNbVwjI2NfZkblOvgFYmicmxXwbotw0QhVS-Mh9sxns2E",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 412.125,
"unit": "PT"
},
"width": {
"magnitude": 229.61249999999998,
"unit": "PT"
}
}
}
},
"objectId": "kix.ez1fb9v1361v"
},
"kix.juxcraolrfj0": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh6.googleusercontent.com/WgWK8X6fd29gZi6xJmmZXJQ2CG720Kw6yExRLNwYtAs3_-zmqpezplwWsqmKo_R8XSWkxupkZiUETO8s7-nPSJjtJotL37awQLm7zfdK2ifIDbruxc7tdSSdfb3FshR5INeW2SPBmMNukYbGl8mPWnrynDSdo8GF3OlpYAgWaND67hCPMxKGJG0Oh1zjKliqMdXcVGQ",
"cropProperties": {}
},
"marginBottom": {
"magnitude": 9.0,
"unit": "PT"
},
"marginLeft": {
"magnitude": 9.0,
"unit": "PT"
},
"marginRight": {
"magnitude": 9.0,
"unit": "PT"
},
"marginTop": {
"magnitude": 9.0,
"unit": "PT"
},
"size": {
"height": {
"magnitude": 394.875,
"unit": "PT"
},
"width": {
"magnitude": 196.3262195121951,
"unit": "PT"
}
}
}
},
"objectId": "kix.juxcraolrfj0"
}
},
"lists": {
"kix.1tjhv41sn0xa": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.1ztzk92hrth8": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.2ctr6ys6ni0e": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.2jnyqucbt2t6": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.2whi3gkwlssd": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.3cjxume1ox5j": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.3l2774habcsr": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.4x1zl3kbw569": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.4yb7edsq6e7h": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.5hb992swn8xf": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.5jdr984vfzt1": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.5q2x329ym1hh": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.26666668,
"green": 0.26666668,
"red": 0.26666668
}
}
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.6f05htw8422z": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.6j918luqnpw7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.6m37iee3p8wg": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.7or0vngkfvx7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.7uh5pgoi33tb": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.83lp1z9knfuo": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.8bm96xhzoe5y": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.8budch7w7arn": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.98e48u1wcy7a": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.98vmteiu60y4": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.9u3cg917bqs8": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.9ueckdtpugb1": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.9uhh20xkbn6m": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.9z83l2c17pcu": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.agpmvda4vr7h": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.anq6omciu13j": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.b7qotwh7gtna": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.bmk2w9stijyg": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.c7ejcv2rhol9": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.cbv3p81ktfkm": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.cw1c2jqsuto": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.ed3ilj3kkhq2": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.f3mtn21egf47": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.f9bz4vrobr4": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.fa4ji89str8f": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.fj7194xw5fjn": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.g801zwj9tdo5": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.g846847cbhgd": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.g8ukrj6l25im": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.gawmxw84fbl": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.gpkppvve7lf6": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.hnxe8uaki5ye": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.huc4gmkwuq3u": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.ighvy8mje2ni": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 342.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 360.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 378.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 396.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 414.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 432.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.imsafi72ulmz": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.j2ckn4bxfuh7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.jah968f0rvh1": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.jkp7jly57b9l": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.k0g7fgw2pxb9": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.kh0gu8ggzrfl": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.kjyum9q5klsd": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.l2nxb9cf1l7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.l9tvvj4pt5te": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.lwtrs6k81vg0": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.nw9e0rbdtf2n": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.o6y9eyfrksu6": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.o72pyift6jdv": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.oerq1n8ypay0": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.pcizye4e9dah": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.phibiqsq7jjd": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.pvf8i7z50kj2": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.q5glzqgk6j58": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.q759u59r2yjj": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.qk785s5gz3e7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.qnkbj287noea": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.qvkatskfprp3": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.qx7bo6w9dag0": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.r51tyrttcax1": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.r8m6khspk25u": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.rrgd3s9e8n6q": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.rup19lwpb96r": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.rza4cz1vbnb5": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.s154rj5xcbab": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.s3ytlwab2m4": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.slxd9egkb7ci": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.sqqfdjlv2hm9": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.tismz98me1tb": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.tobmpp8mbh7q": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.uye62wdrnhk7": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.v58qrdjinxbw": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.vc2fcwdxd37v": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.vwvs454chlx5": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.wa0nkis9zlxf": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.wvtqhihdjvtw": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.x2xqmh4hm4pa": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.xj4zd89gdvlp": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.y4auuiny9mus": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 342.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 360.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 378.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 396.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.yadiw4lw6xu2": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.z1u1i7qvii2l": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.z25dkq3ogzpp": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.z2hyt12r7kc1": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.z46ih1vlabol": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
},
"kix.zgjdicbyim0z": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%2",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%5",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7",
"glyphSymbol": "○",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%8",
"glyphSymbol": "■",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
}
]
}
}
},
"namedStyles": {
"styles": [
{
"namedStyleType": "NORMAL_TEXT",
"paragraphStyle": {
"alignment": "START",
"avoidWidowAndOrphan": true,
"borderBetween": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderBottom": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderLeft": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderRight": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"borderTop": {
"color": {},
"dashStyle": "SOLID",
"padding": {
"unit": "PT"
},
"width": {
"unit": "PT"
}
},
"direction": "LEFT_TO_RIGHT",
"indentEnd": {
"unit": "PT"
},
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"keepLinesTogether": false,
"keepWithNext": false,
"lineSpacing": 115.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
},
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
},
"textStyle": {
"backgroundColor": {},
"baselineOffset": "NONE",
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"italic": false,
"smallCaps": false,
"strikethrough": false,
"underline": false,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "HEADING_1",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.6fjw6cht0bf",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "HEADING_1",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 10.0,
"unit": "PT"
}
},
"textStyle": {
"fontSize": {
"magnitude": 16.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "HEADING_2",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.ecgsg25eeya7",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "HEADING_2",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 10.0,
"unit": "PT"
}
},
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 13.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "HEADING_3",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.4pgk284l6s7z",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "HEADING_3",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 8.0,
"unit": "PT"
}
},
"textStyle": {
"bold": true,
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.4,
"green": 0.4,
"red": 0.4
}
}
},
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "HEADING_4",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.9ujhi55jbp4b",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "HEADING_4",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 8.0,
"unit": "PT"
}
},
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.4,
"green": 0.4,
"red": 0.4
}
}
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "HEADING_5",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.yjfswb1t0sub",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "HEADING_5",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 8.0,
"unit": "PT"
}
},
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.4,
"green": 0.4,
"red": 0.4
}
}
},
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "HEADING_6",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.91dfhsx5n4l3",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "HEADING_6",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 8.0,
"unit": "PT"
}
},
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.4,
"green": 0.4,
"red": 0.4
}
}
},
"italic": true,
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
},
{
"namedStyleType": "TITLE",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.uvzknuxefxg9",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "TITLE",
"pageBreakBefore": false
},
"textStyle": {
"fontSize": {
"magnitude": 21.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
},
{
"namedStyleType": "SUBTITLE",
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceAbove": {
"unit": "PT"
},
"spaceBelow": {
"magnitude": 10.0,
"unit": "PT"
}
},
"textStyle": {
"fontSize": {
"magnitude": 13.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.4,
"green": 0.4,
"red": 0.4
}
}
},
"italic": true,
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
}
]
},
"revisionId": "ANeT5PQaq4V_xuNmz8wVcYiUd65adTPMM67i__JctWPcmS5SXgnhEW5c-RQlHUEAMS3X3dNpFRQY_08xDoLxYQ",
"suggestionsViewMode": "PREVIEW_WITHOUT_SUGGESTIONS",
"title": "Adding Google Maps to a Flutter app codelab"
} | codelabs/tooling/claat_export_images/test/data/exports/1kwYB2RE1EXYMOt7F5fm-0nrY6BA1AyWsBXz2vlfTfxA.json/0 | {
"file_path": "codelabs/tooling/claat_export_images/test/data/exports/1kwYB2RE1EXYMOt7F5fm-0nrY6BA1AyWsBXz2vlfTfxA.json",
"repo_id": "codelabs",
"token_count": 1257793
} | 72 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/webview_flutter/step_03/android/gradle.properties/0 | {
"file_path": "codelabs/webview_flutter/step_03/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 73 |
include: ../../analysis_options.yaml
| codelabs/webview_flutter/step_04/analysis_options.yaml/0 | {
"file_path": "codelabs/webview_flutter/step_04/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 74 |
include: ../../analysis_options.yaml
| codelabs/webview_flutter/step_05/analysis_options.yaml/0 | {
"file_path": "codelabs/webview_flutter/step_05/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 75 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:path_provider/path_provider.dart';
import 'package:webview_flutter/webview_flutter.dart';
const String kExamplePage = '''
<!DOCTYPE html>
<html lang="en">
<head>
<title>Load file or HTML string example</title>
</head>
<body>
<h1>Local demo page</h1>
<p>
This is an example page used to demonstrate how to load a local file or HTML
string using the <a href="https://pub.dev/packages/webview_flutter">Flutter
webview</a> plugin.
</p>
</body>
</html>
''';
enum _MenuOptions {
navigationDelegate,
userAgent,
javascriptChannel,
listCookies,
clearCookies,
addCookie,
setCookie,
removeCookie,
loadFlutterAsset,
loadLocalFile,
loadHtmlString,
}
class Menu extends StatefulWidget {
const Menu({required this.controller, super.key});
final WebViewController controller;
@override
State<Menu> createState() => _MenuState();
}
class _MenuState extends State<Menu> {
final cookieManager = WebViewCookieManager();
@override
Widget build(BuildContext context) {
return PopupMenuButton<_MenuOptions>(
onSelected: (value) async {
switch (value) {
case _MenuOptions.navigationDelegate:
await widget.controller
.loadRequest(Uri.parse('https://youtube.com'));
case _MenuOptions.userAgent:
final userAgent = await widget.controller
.runJavaScriptReturningResult('navigator.userAgent');
if (!context.mounted) return;
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text('$userAgent'),
));
case _MenuOptions.javascriptChannel:
await widget.controller.runJavaScript('''
var req = new XMLHttpRequest();
req.open('GET', "https://api.ipify.org/?format=json");
req.onload = function() {
if (req.status == 200) {
let response = JSON.parse(req.responseText);
SnackBar.postMessage("IP Address: " + response.ip);
} else {
SnackBar.postMessage("Error: " + req.status);
}
}
req.send();''');
case _MenuOptions.clearCookies:
await _onClearCookies();
case _MenuOptions.listCookies:
await _onListCookies(widget.controller);
case _MenuOptions.addCookie:
await _onAddCookie(widget.controller);
case _MenuOptions.setCookie:
await _onSetCookie(widget.controller);
case _MenuOptions.removeCookie:
await _onRemoveCookie(widget.controller);
case _MenuOptions.loadFlutterAsset:
if (!mounted) return;
await _onLoadFlutterAssetExample(widget.controller, context);
case _MenuOptions.loadLocalFile:
if (!mounted) return;
await _onLoadLocalFileExample(widget.controller, context);
case _MenuOptions.loadHtmlString:
if (!mounted) return;
await _onLoadHtmlStringExample(widget.controller, context);
}
},
itemBuilder: (context) => [
const PopupMenuItem<_MenuOptions>(
value: _MenuOptions.navigationDelegate,
child: Text('Navigate to YouTube'),
),
const PopupMenuItem<_MenuOptions>(
value: _MenuOptions.userAgent,
child: Text('Show user-agent'),
),
const PopupMenuItem<_MenuOptions>(
value: _MenuOptions.javascriptChannel,
child: Text('Lookup IP Address'),
),
const PopupMenuItem<_MenuOptions>(
value: _MenuOptions.clearCookies,
child: Text('Clear cookies'),
),
const PopupMenuItem<_MenuOptions>(
value: _MenuOptions.listCookies,
child: Text('List cookies'),
),
const PopupMenuItem<_MenuOptions>(
value: _MenuOptions.addCookie,
child: Text('Add cookie'),
),
const PopupMenuItem<_MenuOptions>(
value: _MenuOptions.setCookie,
child: Text('Set cookie'),
),
const PopupMenuItem<_MenuOptions>(
value: _MenuOptions.removeCookie,
child: Text('Remove cookie'),
),
const PopupMenuItem<_MenuOptions>(
value: _MenuOptions.loadFlutterAsset,
child: Text('Load Flutter Asset'),
),
const PopupMenuItem<_MenuOptions>(
value: _MenuOptions.loadHtmlString,
child: Text('Load HTML string'),
),
const PopupMenuItem<_MenuOptions>(
value: _MenuOptions.loadLocalFile,
child: Text('Load local file'),
),
],
);
}
Future<void> _onListCookies(WebViewController controller) async {
final String cookies = await controller
.runJavaScriptReturningResult('document.cookie') as String;
if (!mounted) return;
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(cookies.isNotEmpty ? cookies : 'There are no cookies.'),
),
);
}
Future<void> _onClearCookies() async {
final hadCookies = await cookieManager.clearCookies();
String message = 'There were cookies. Now, they are gone!';
if (!hadCookies) {
message = 'There were no cookies to clear.';
}
if (!mounted) return;
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(message),
),
);
}
Future<void> _onAddCookie(WebViewController controller) async {
await controller.runJavaScript('''var date = new Date();
date.setTime(date.getTime()+(30*24*60*60*1000));
document.cookie = "FirstName=John; expires=" + date.toGMTString();''');
if (!mounted) return;
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Custom cookie added.'),
),
);
}
Future<void> _onSetCookie(WebViewController controller) async {
await cookieManager.setCookie(
const WebViewCookie(name: 'foo', value: 'bar', domain: 'flutter.dev'),
);
if (!mounted) return;
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Custom cookie is set.'),
),
);
}
Future<void> _onRemoveCookie(WebViewController controller) async {
await controller.runJavaScript(
'document.cookie="FirstName=John; expires=Thu, 01 Jan 1970 00:00:00 UTC" ');
if (!mounted) return;
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Custom cookie removed.'),
),
);
}
Future<void> _onLoadFlutterAssetExample(
WebViewController controller, BuildContext context) async {
await controller.loadFlutterAsset('assets/www/index.html');
}
Future<void> _onLoadLocalFileExample(
WebViewController controller, BuildContext context) async {
final String pathToIndex = await _prepareLocalFile();
await controller.loadFile(pathToIndex);
}
static Future<String> _prepareLocalFile() async {
final String tmpDir = (await getTemporaryDirectory()).path;
final File indexFile = File('$tmpDir/www/index.html');
await Directory('$tmpDir/www').create(recursive: true);
await indexFile.writeAsString(kExamplePage);
return indexFile.path;
}
Future<void> _onLoadHtmlStringExample(
WebViewController controller, BuildContext context) async {
await controller.loadHtmlString(kExamplePage);
}
}
| codelabs/webview_flutter/step_12/lib/src/menu.dart/0 | {
"file_path": "codelabs/webview_flutter/step_12/lib/src/menu.dart",
"repo_id": "codelabs",
"token_count": 2985
} | 76 |
# Code of conduct
When contributing code to the `devtools` project, please observe
Flutter's [code of conduct](https://github.com/flutter/flutter/blob/master/CODE_OF_CONDUCT.md).
| devtools/CODE_OF_CONDUCT.md/0 | {
"file_path": "devtools/CODE_OF_CONDUCT.md",
"repo_id": "devtools",
"token_count": 57
} | 77 |
package com.example.code_size_package
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}
| devtools/case_study/code_size/optimized/code_size_package/android/app/src/main/kotlin/com/example/code_size_package/MainActivity.kt/0 | {
"file_path": "devtools/case_study/code_size/optimized/code_size_package/android/app/src/main/kotlin/com/example/code_size_package/MainActivity.kt",
"repo_id": "devtools",
"token_count": 40
} | 78 |
#include "Generated.xcconfig"
| devtools/case_study/code_size/optimized/code_size_package/ios/Flutter/Release.xcconfig/0 | {
"file_path": "devtools/case_study/code_size/optimized/code_size_package/ios/Flutter/Release.xcconfig",
"repo_id": "devtools",
"token_count": 12
} | 79 |
#include "Generated.xcconfig"
| devtools/case_study/code_size/unoptimized/code_size_package/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "devtools/case_study/code_size/unoptimized/code_size_package/ios/Flutter/Debug.xcconfig",
"repo_id": "devtools",
"token_count": 12
} | 80 |
name: code_size_package
description: A Flutter project demonstrating code size issues with packages.
publish_to: none
environment:
sdk: ^3.0.0
dependencies:
flutter:
sdk: flutter
encrypt: ^5.0.0
dev_dependencies:
flutter_test:
sdk: flutter
flutter:
uses-material-design: true
| devtools/case_study/code_size/unoptimized/code_size_package/pubspec.yaml/0 | {
"file_path": "devtools/case_study/code_size/unoptimized/code_size_package/pubspec.yaml",
"repo_id": "devtools",
"token_count": 110
} | 81 |
#include "Generated.xcconfig"
| devtools/case_study/memory_leaks/images_1/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "devtools/case_study/memory_leaks/images_1/ios/Flutter/Debug.xcconfig",
"repo_id": "devtools",
"token_count": 12
} | 82 |
name: memory_leaks_images
description: Flutter image memory leak example for a DevTools case study.
publish_to: none
environment:
sdk: ^3.0.0
dependencies:
flutter:
sdk: flutter
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^3.0.1
flutter:
uses-material-design: true
| devtools/case_study/memory_leaks/images_1/pubspec.yaml/0 | {
"file_path": "devtools/case_study/memory_leaks/images_1/pubspec.yaml",
"repo_id": "devtools",
"token_count": 118
} | 83 |
#include "Generated.xcconfig"
| devtools/case_study/memory_leaks/leaking_counter_1/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "devtools/case_study/memory_leaks/leaking_counter_1/ios/Flutter/Debug.xcconfig",
"repo_id": "devtools",
"token_count": 12
} | 84 |
#include "ephemeral/Flutter-Generated.xcconfig"
| devtools/case_study/memory_leaks/leaking_counter_1/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "devtools/case_study/memory_leaks/leaking_counter_1/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "devtools",
"token_count": 19
} | 85 |
#import "GeneratedPluginRegistrant.h" | devtools/case_study/platform_channel/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "devtools/case_study/platform_channel/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "devtools",
"token_count": 12
} | 86 |
---
redirect_to: https://flutter.dev/docs/development/tools/devtools/timeline
---
| devtools/docs/timeline.md/0 | {
"file_path": "devtools/docs/timeline.md",
"repo_id": "devtools",
"token_count": 28
} | 87 |
// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:io';
File? checkFileExists(String path) {
final testFile = File.fromUri(Uri.parse(path));
if (!testFile.existsSync()) {
stdout.writeln('Could not locate file at $path.');
return null;
}
return testFile;
}
| devtools/packages/devtools_app/benchmark/scripts/utils.dart/0 | {
"file_path": "devtools/packages/devtools_app/benchmark/scripts/utils.dart",
"repo_id": "devtools",
"token_count": 132
} | 88 |
// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:collection/collection.dart';
import 'package:devtools_app/devtools_app.dart';
import 'package:devtools_app/src/service/service_extension_widgets.dart';
import 'package:devtools_app/src/service/service_extensions.dart' as extensions;
import 'package:devtools_app_shared/service.dart';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:devtools_test/helpers.dart';
import 'package:devtools_test/integration_test.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:integration_test/integration_test.dart';
import 'package:vm_service/vm_service.dart';
// To run:
// dart run integration_test/run_tests.dart --target=integration_test/test/live_connection/service_connection_test.dart
void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
late TestApp testApp;
setUpAll(() {
testApp = TestApp.fromEnvironment();
expect(testApp.vmServiceUri, isNotNull);
});
tearDown(() async {
await resetHistory();
});
testWidgets('initial service connection state', (tester) async {
await pumpAndConnectDevTools(tester, testApp);
// Await a delay to ensure the service extensions have had a chance to
// be called. This delay may be able to be shortened if doing so does
// not cause bot flakiness.
await tester.pump(longDuration);
// Ensure all futures are completed before running checks.
await serviceConnection.serviceManager.service!.allFuturesCompleted;
logStatus('verify the vm service calls that occur on connect');
final vmServiceCallCount =
serviceConnection.serviceManager.service!.vmServiceCallCount;
expect(
// Use a range instead of an exact number because service extension
// calls are not consistent. This will still catch any spurious calls
// that are unintentionally added at start up.
const Range(40, 70).contains(vmServiceCallCount),
isTrue,
reason: 'Unexpected number of vm service calls upon connection: '
'$vmServiceCallCount. If this is expected, please update this test '
'to the new expected number of calls. Here are the calls for this '
'test run:\n ${serviceConnection.serviceManager.service!.vmServiceCalls.toString()}',
);
// Check the ordering of the vm service calls we can expect to occur
// in a stable order.
expect(
serviceConnection.serviceManager.service!.vmServiceCalls
// Filter out unawaited streamListen calls.
.where((call) => call != 'streamListen')
.toList()
.sublist(0, 6),
equals([
'getSupportedProtocols',
'getVersion',
'getFlagList',
'getDartDevelopmentServiceVersion',
'getDartDevelopmentServiceVersion',
'getVM',
]),
reason: 'Unexpected order of vm service calls upon connection. '
'Here are the calls for this test run:\n '
'${serviceConnection.serviceManager.service!.vmServiceCalls.toString()}',
);
expect(
serviceConnection.serviceManager.service!.vmServiceCalls
.where((call) => call == 'streamListen')
.toList()
.length,
equals(10),
);
logStatus('verify managers have all been initialized');
expect(serviceConnection.serviceManager.isolateManager, isNotNull);
expect(serviceConnection.serviceManager.serviceExtensionManager, isNotNull);
expect(serviceConnection.vmFlagManager, isNotNull);
expect(
serviceConnection.serviceManager.isolateManager.isolates.value,
isNotEmpty,
);
expect(serviceConnection.vmFlagManager.flags.value, isNotNull);
if (serviceConnection.serviceManager.isolateManager.selectedIsolate.value ==
null) {
await whenValueNonNull(
serviceConnection.serviceManager.isolateManager.selectedIsolate,
);
}
await disconnectFromTestApp(tester);
});
testWidgets('can call services and service extensions', (tester) async {
await pumpAndConnectDevTools(tester, testApp);
await tester.pump(longDuration);
// TODO(kenz): re-work this integration test so that we do not have to be
// on the inspector screen for this to pass.
await switchToScreen(
tester,
tabIcon: ScreenMetaData.inspector.icon!,
screenId: ScreenMetaData.inspector.id,
);
await tester.pump(longDuration);
// Ensure all futures are completed before running checks.
await serviceConnection.serviceManager.service!.allFuturesCompleted;
logStatus('verify Flutter framework service extensions');
await _verifyBooleanExtension(tester);
await _verifyNumericExtension(tester);
await _verifyStringExtension(tester);
logStatus('verify Flutter engine service extensions');
expect(
await serviceConnection.queryDisplayRefreshRate,
equals(60),
);
logStatus('verify services that are registered to exactly one client');
await _verifyHotReloadAndHotRestart();
await expectLater(
serviceConnection.serviceManager.callService('fakeMethod'),
throwsException,
);
await disconnectFromTestApp(tester);
});
testWidgets('loads initial extension states from device', (tester) async {
await pumpAndConnectDevTools(tester, testApp);
await tester.pump(longDuration);
// Ensure all futures are completed before running checks.
final service = serviceConnection.serviceManager.service!;
await service.allFuturesCompleted;
final serviceExtensionsToEnable = [
(extensions.debugPaint.extension, true),
(extensions.slowAnimations.extension, 5.0),
(extensions.togglePlatformMode.extension, 'iOS'),
];
logStatus('enabling service extensions on the test device');
// Enable a service extension of each type (boolean, numeric, string).
for (final ext in serviceExtensionsToEnable) {
await serviceConnection.serviceManager.serviceExtensionManager
.setServiceExtensionState(
ext.$1,
enabled: true,
value: ext.$2,
);
}
logStatus('disconnecting from the test device');
await disconnectFromTestApp(tester);
for (final ext in serviceExtensionsToEnable) {
expect(
serviceConnection.serviceManager.serviceExtensionManager
.isServiceExtensionAvailable(ext.$1),
isFalse,
);
}
logStatus('reconnecting to the test device');
await connectToTestApp(tester, testApp);
logStatus('verify extension states have been restored from the device');
for (final ext in serviceExtensionsToEnable) {
expect(
serviceConnection.serviceManager.serviceExtensionManager
.isServiceExtensionAvailable(ext.$1),
isTrue,
);
await _verifyExtensionStateInServiceManager(
ext.$1,
enabled: true,
value: ext.$2,
);
}
await disconnectFromTestApp(tester);
});
}
Future<void> _verifyBooleanExtension(WidgetTester tester) async {
final extensionName = extensions.debugPaint.extension;
const evalExpression = 'debugPaintSizeEnabled';
final library = EvalOnDartLibrary(
'package:flutter/src/rendering/debug.dart',
serviceConnection.serviceManager.service!,
serviceManager: serviceConnection.serviceManager,
);
await _verifyExtension(
tester,
extensionName: extensionName,
evalExpression: evalExpression,
library: library,
initialValue: false,
newValue: true,
);
}
Future<void> _verifyNumericExtension(WidgetTester tester) async {
final extensionName = extensions.slowAnimations.extension;
const evalExpression = 'timeDilation';
final library = EvalOnDartLibrary(
'package:flutter/src/scheduler/binding.dart',
serviceConnection.serviceManager.service!,
serviceManager: serviceConnection.serviceManager,
);
await _verifyExtension(
tester,
extensionName: extensionName,
evalExpression: evalExpression,
library: library,
initialValue: 1.0,
newValue: 5.0,
initialValueOnDevice: '1.0',
newValueOnDevice: '5.0',
);
}
Future<void> _verifyStringExtension(WidgetTester tester) async {
final extensionName = extensions.togglePlatformMode.extension;
await _serviceExtensionAvailable(extensionName);
const evalExpression = 'defaultTargetPlatform.toString()';
final library = EvalOnDartLibrary(
'package:flutter/src/foundation/platform.dart',
serviceConnection.serviceManager.service!,
serviceManager: serviceConnection.serviceManager,
);
await _verifyExtension(
tester,
extensionName: extensionName,
evalExpression: evalExpression,
library: library,
initialValue: 'android',
newValue: 'iOS',
initialValueOnDevice: 'TargetPlatform.android',
newValueOnDevice: 'TargetPlatform.iOS',
initialValueInServiceManager: (true, 'android'),
// TODO(https://github.com/flutter/devtools/issues/2780): change this
// extension from the DevTools UI when it has a button in the inspector.
toggleExtensionFromUi: false,
);
}
Future<void> _verifyHotReloadAndHotRestart() async {
const evalExpression = 'topLevelFieldForTest';
final library = EvalOnDartLibrary(
'package:flutter_app/main.dart',
serviceConnection.serviceManager.service!,
serviceManager: serviceConnection.serviceManager,
);
// Verify the initial value of [topLevelFieldForTest].
var value = await library.eval(evalExpression, isAlive: null);
expect(value.runtimeType, InstanceRef);
expect(value!.valueAsString, 'false');
// Change the value of [topLevelFieldForTest].
await library.eval('$evalExpression = true', isAlive: null);
// Verify the value of [topLevelFieldForTest] is now changed.
value = await library.eval(evalExpression, isAlive: null);
expect(value.runtimeType, InstanceRef);
expect(value!.valueAsString, 'true');
await serviceConnection.serviceManager.performHotReload();
// Verify the value of [topLevelFieldForTest] is still changed after hot
// reload.
value = await library.eval(evalExpression, isAlive: null);
expect(value.runtimeType, InstanceRef);
expect(value!.valueAsString, 'true');
await serviceConnection.serviceManager.performHotRestart();
// Verify the value of [topLevelFieldForTest] is back to its original value
// after hot restart.
value = await library.eval(evalExpression, isAlive: null);
expect(value.runtimeType, InstanceRef);
expect(value!.valueAsString, 'false');
}
Future<void> _verifyExtension(
WidgetTester tester, {
required String extensionName,
required String evalExpression,
required EvalOnDartLibrary library,
required Object initialValue,
required Object newValue,
(bool, Object?)? initialValueInServiceManager,
String? initialValueOnDevice,
String? newValueOnDevice,
bool toggleExtensionFromUi = true,
}) async {
await _serviceExtensionAvailable(extensionName);
await _verifyExtensionStateOnTestDevice(
evalExpression: evalExpression,
expectedResult: initialValueOnDevice ?? initialValue.toString(),
library: library,
);
await _verifyExtensionStateInServiceManager(
extensionName,
enabled: initialValueInServiceManager?.$1 ?? false,
value: initialValueInServiceManager?.$2,
);
// Enable the service extension state from the service manager.
await serviceConnection.serviceManager.serviceExtensionManager
.setServiceExtensionState(
extensionName,
enabled: true,
value: newValue,
);
await _verifyExtensionStateOnTestDevice(
evalExpression: evalExpression,
expectedResult: newValueOnDevice ?? newValue.toString(),
library: library,
);
await _verifyExtensionStateInServiceManager(
extensionName,
enabled: true,
value: newValue,
);
if (toggleExtensionFromUi) {
// Disable the service extension state from the UI.
await _changeServiceExtensionFromButton(
extensionName,
evalExpression: evalExpression,
library: library,
expectedResultOnDevice: initialValueOnDevice ?? initialValue.toString(),
expectedResultInServiceManager: (false, initialValue),
tester: tester,
);
}
}
Future<void> _changeServiceExtensionFromButton(
String extensionName, {
required String evalExpression,
required EvalOnDartLibrary library,
required String? expectedResultOnDevice,
required (bool, Object?) expectedResultInServiceManager,
required WidgetTester tester,
}) async {
final serviceExtensionButtons = tester
.widgetList<ServiceExtensionButton>(find.byType(ServiceExtensionButton));
final button = serviceExtensionButtons.firstWhereOrNull(
(b) => b.extensionState.description.extension == extensionName,
);
expect(button, isNotNull);
await tester.tap(find.byWidget(button as Widget));
await tester.pumpAndSettle(shortPumpDuration);
await _verifyExtensionStateOnTestDevice(
evalExpression: evalExpression,
expectedResult: expectedResultOnDevice,
library: library,
);
await _verifyExtensionStateInServiceManager(
extensionName,
enabled: expectedResultInServiceManager.$1,
value: expectedResultInServiceManager.$2,
);
}
/// Returns a future that completes when the service extension is available.
Future<void> _serviceExtensionAvailable(String extensionName) async {
final listenable = serviceConnection.serviceManager.serviceExtensionManager
.hasServiceExtension(extensionName);
final completer = Completer<void>();
void listener() {
if (listenable.value && !completer.isCompleted) {
completer.complete();
}
}
listener();
listenable.addListener(listener);
await completer.future;
listenable.removeListener(listener);
}
Future<void> _verifyExtensionStateOnTestDevice({
required String evalExpression,
required String? expectedResult,
required EvalOnDartLibrary library,
}) async {
final result = await library.eval(evalExpression, isAlive: null);
if (result is InstanceRef) {
expect(result.valueAsString, equals(expectedResult));
}
}
Future<void> _verifyExtensionStateInServiceManager(
String extensionName, {
required bool enabled,
required Object? value,
}) async {
final stateListenable = serviceConnection
.serviceManager.serviceExtensionManager
.getServiceExtensionState(extensionName);
// Wait for the service extension state to match the expected value.
final Completer<ServiceExtensionState> stateCompleter = Completer();
void stateListener() {
if (stateListenable.value.value == value) {
stateCompleter.complete(stateListenable.value);
}
}
stateListenable.addListener(stateListener);
stateListener();
final ServiceExtensionState state = await stateCompleter.future;
stateListenable.removeListener(stateListener);
expect(state.enabled, equals(enabled));
expect(state.value, equals(value));
}
| devtools/packages/devtools_app/integration_test/test/live_connection/service_connection_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/integration_test/test/live_connection/service_connection_test.dart",
"repo_id": "devtools",
"token_count": 4892
} | 89 |
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:flutter/material.dart';
import 'package:logging/logging.dart';
import '../shared/analytics/analytics.dart' as ga;
import '../shared/analytics/constants.dart' as gac;
import '../shared/common_widgets.dart';
import '../shared/config_specific/import_export/import_export.dart';
import '../shared/framework_controller.dart';
import '../shared/globals.dart';
import '../shared/primitives/utils.dart';
import '../shared/routing.dart';
import '../shared/ui/colors.dart';
import 'framework_core.dart';
final _log = Logger('initializer');
/// Widget that requires business logic to be loaded before building its
/// [builder].
///
/// See [_InitializerState.build] for the logic that determines whether the
/// business logic is loaded.
///
/// Use this widget to wrap pages that require [service.serviceManager] to be
/// connected. As we require additional services to be available, add them
/// here.
class Initializer extends StatefulWidget {
const Initializer({
Key? key,
required this.url,
required this.builder,
this.allowConnectionScreenOnDisconnect = true,
}) : super(key: key);
/// The builder for the widget's children.
///
/// Will only be built if [_InitializerState._checkLoaded] is true.
final WidgetBuilder builder;
/// The url to attempt to load a vm service from.
///
/// If null, the app will navigate to the [ConnectScreen].
final String? url;
/// Whether to allow navigating to the connection screen upon disconnect.
final bool allowConnectionScreenOnDisconnect;
@override
State<Initializer> createState() => _InitializerState();
}
class _InitializerState extends State<Initializer>
with SingleTickerProviderStateMixin, AutoDisposeMixin {
/// Checks if the [service.serviceManager] is connected.
///
/// This is a method and not a getter to communicate that its value may
/// change between successive calls.
bool _checkLoaded() => serviceConnection.serviceManager.hasConnection;
OverlayEntry? currentDisconnectedOverlay;
@override
void initState() {
super.initState();
autoDisposeStreamSubscription(
frameworkController.onConnectVmEvent.listen(_connectVm),
);
// If we become disconnected by means other than a manual disconnect action,
// attempt to reconnect.
addAutoDisposeListener(serviceConnection.serviceManager.connectedState, () {
final connectionState =
serviceConnection.serviceManager.connectedState.value;
if (connectionState.connected) {
setState(() {});
} else if (!connectionState.userInitiatedConnectionState) {
// Try to reconnect (otherwise, will fall back to showing the
// disconnected overlay).
unawaited(
_attemptUrlConnection(
logException: false,
errorReporter: (_, __) {
_log.warning(
'Attempted to reconnect to the application, but failed.',
);
},
),
);
}
});
unawaited(_attemptUrlConnection());
}
@override
void didUpdateWidget(Initializer oldWidget) {
super.didUpdateWidget(oldWidget);
// Handle widget rebuild when the URL has changed.
if (widget.url != null && widget.url != oldWidget.url) {
unawaited(_attemptUrlConnection());
}
}
/// Connects to the VM with the given URI. This request usually comes from the
/// IDE via the server API to reuse the DevTools window after being disconnected
/// (for example if the user stops a debug session then launches a new one).
void _connectVm(ConnectVmEvent event) {
DevToolsRouterDelegate.of(context).updateArgsIfChanged({
'uri': event.serviceProtocolUri.toString(),
if (event.notify) 'notify': 'true',
});
}
Future<void> _attemptUrlConnection({
ErrorReporter? errorReporter,
bool logException = true,
}) async {
if (widget.url == null) {
_handleNoConnection();
return;
}
final connected = await FrameworkCore.initVmService(
serviceUriAsString: widget.url!,
errorReporter: errorReporter,
logException: logException,
);
if (!connected) {
_handleNoConnection();
}
}
/// Shows a "disconnected" overlay if the [service.serviceManager] is not currently connected.
void _handleNoConnection() {
WidgetsBinding.instance.scheduleFrameCallback((_) {
if (!_checkLoaded() &&
ModalRoute.of(context)!.isCurrent &&
currentDisconnectedOverlay == null) {
ga.select(
gac.devToolsMain,
gac.appDisconnected,
);
Overlay.of(context).insert(_createDisconnectedOverlay());
addAutoDisposeListener(
serviceConnection.serviceManager.connectedState,
() {
final connectedState =
serviceConnection.serviceManager.connectedState.value;
if (connectedState.connected) {
// Hide the overlay if we become reconnected.
hideDisconnectedOverlay();
}
},
);
}
});
}
void hideDisconnectedOverlay() {
setState(() {
currentDisconnectedOverlay?.remove();
currentDisconnectedOverlay = null;
});
}
void _reviewHistory() {
assert(offlineController.offlineDataJson.isNotEmpty);
offlineController.enterOfflineMode(
offlineApp: offlineController.previousConnectedApp!,
);
hideDisconnectedOverlay();
final args = <String, String?>{
'uri': null,
'screen': offlineController
.offlineDataJson[DevToolsExportKeys.activeScreenId.name] as String,
};
final routerDelegate = DevToolsRouterDelegate.of(context);
Router.neglect(
context,
() => routerDelegate.navigate(snapshotScreenId, args),
);
}
OverlayEntry _createDisconnectedOverlay() {
final theme = Theme.of(context);
currentDisconnectedOverlay = OverlayEntry(
builder: (context) => Container(
color: theme.colorScheme.overlayShadowColor,
child: Center(
child: Column(
children: [
const Spacer(),
Text('Disconnected', style: theme.textTheme.displaySmall),
const SizedBox(height: defaultSpacing),
if (widget.allowConnectionScreenOnDisconnect)
ElevatedButton(
onPressed: () {
hideDisconnectedOverlay();
DevToolsRouterDelegate.of(context).navigateHome(
clearUriParam: true,
clearScreenParam: true,
);
},
child: const Text(connectToNewAppText),
)
else
const Text('Run a new debug session to reconnect'),
const Spacer(),
if (offlineController.offlineDataJson.isNotEmpty)
ElevatedButton(
onPressed: _reviewHistory,
child: const Text('Review recent data (offline)'),
),
const Spacer(),
],
),
),
),
);
return currentDisconnectedOverlay!;
}
@override
Widget build(BuildContext context) {
return _checkLoaded() || offlineController.offlineMode.value
? widget.builder(context)
: Scaffold(
body: currentDisconnectedOverlay != null
? const SizedBox()
: const CenteredCircularProgressIndicator(),
);
}
}
| devtools/packages/devtools_app/lib/src/framework/initializer.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/framework/initializer.dart",
"repo_id": "devtools",
"token_count": 2988
} | 90 |
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:devtools_app_shared/ui.dart';
import 'package:flutter/material.dart';
/// Create a header area for a debugger component.
///
/// Either one of [text] or [child] must be supplied.
Widget debuggerSectionTitle(ThemeData theme, {String? text, Widget? child}) {
assert(text != null || child != null);
assert(text == null || child == null);
return OutlineDecoration.onlyBottom(
child: Container(
padding: const EdgeInsets.only(left: defaultSpacing),
alignment: Alignment.centerLeft,
height: defaultHeaderHeight,
child: child ?? Text(text!, style: theme.textTheme.titleSmall),
),
);
}
Widget createCircleWidget(double radius, Color? color) {
return Container(
width: radius,
height: radius,
decoration: BoxDecoration(color: color, shape: BoxShape.circle),
);
}
Widget createAnimatedCircleWidget(double radius, Color? color) {
return AnimatedContainer(
width: radius,
height: radius,
curve: defaultCurve,
duration: defaultDuration,
decoration: BoxDecoration(color: color, shape: BoxShape.circle),
);
}
| devtools/packages/devtools_app/lib/src/screens/debugger/common.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/debugger/common.dart",
"repo_id": "devtools",
"token_count": 395
} | 91 |
// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import '../../shared/analytics/analytics.dart' as ga;
import '../../shared/analytics/constants.dart' as gac;
import '../../shared/screen.dart';
import '../../shared/utils.dart';
import 'deep_link_list_view.dart';
import 'deep_links_controller.dart';
import 'deep_links_model.dart';
import 'select_project_view.dart';
class DeepLinksScreen extends Screen {
DeepLinksScreen() : super.fromMetaData(ScreenMetaData.deepLinks);
static final id = ScreenMetaData.deepLinks.id;
// TODO(https://github.com/flutter/devtools/issues/6013): write documentation.
// @override
// String get docPageId => id;
// TODO(https://github.com/flutter/devtools/issues/6013): consider removing
// this docs url override when documentation is written specifically for the
// deep links tool.
@override
String get docsUrl => 'https://docs.flutter.dev/ui/navigation/deep-linking';
@override
Widget buildScreenBody(BuildContext context) {
return const DeepLinkPage();
}
}
class DeepLinkPage extends StatefulWidget {
const DeepLinkPage({super.key});
@override
State<DeepLinkPage> createState() => _DeepLinkPageState();
}
class _DeepLinkPageState extends State<DeepLinkPage>
with ProvidedControllerMixin<DeepLinksController, DeepLinkPage> {
@override
void initState() {
super.initState();
ga.screen(gac.deeplink);
}
@override
void didChangeDependencies() {
super.didChangeDependencies();
if (!initController()) return;
}
@override
Widget build(BuildContext context) {
return ValueListenableBuilder(
valueListenable: controller.selectedProject,
builder: (_, FlutterProject? project, __) {
return project == null
? const SelectProjectView()
: const DeepLinkListView();
},
);
}
}
| devtools/packages/devtools_app/lib/src/screens/deep_link_validation/deep_links_screen.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/deep_link_validation/deep_links_screen.dart",
"repo_id": "devtools",
"token_count": 656
} | 92 |
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:devtools_app_shared/ui.dart';
import 'package:flutter/material.dart';
import '../../../../shared/primitives/utils.dart';
import '../../inspector_data_models.dart';
import 'arrow.dart';
import 'dimension.dart';
import 'theme.dart';
class FreeSpaceVisualizerWidget extends StatelessWidget {
const FreeSpaceVisualizerWidget(
this.renderProperties, {
Key? key,
}) : super(key: key);
final RenderProperties renderProperties;
@override
Widget build(BuildContext context) {
final colorScheme = Theme.of(context).colorScheme;
final heightDescription =
'h=${toStringAsFixed(renderProperties.realHeight)}';
final widthDescription = 'w=${toStringAsFixed(renderProperties.realWidth)}';
final showWidth =
renderProperties.realWidth != renderProperties.layoutProperties?.width;
final widthWidget = Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Flexible(
child: dimensionDescription(
TextSpan(
text: widthDescription,
),
false,
colorScheme,
),
),
Container(
margin: EdgeInsets.symmetric(vertical: arrowMargin),
child: ArrowWrapper.bidirectional(
arrowColor: widthIndicatorColor,
direction: Axis.horizontal,
arrowHeadSize: arrowHeadSize,
),
),
],
);
final heightWidget = SizedBox(
width: heightOnlyIndicatorSize,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Flexible(
child: dimensionDescription(
TextSpan(text: heightDescription),
false,
colorScheme,
),
),
Container(
margin: EdgeInsets.symmetric(horizontal: arrowMargin),
child: ArrowWrapper.bidirectional(
arrowColor: heightIndicatorColor,
direction: Axis.vertical,
arrowHeadSize: arrowHeadSize,
childMarginFromArrow: 0.0,
),
),
],
),
);
return Positioned(
top: renderProperties.offset.dy,
left: renderProperties.offset.dx,
child: SizedBox(
width: renderProperties.width,
height: renderProperties.height,
child: DevToolsTooltip(
message: '$widthDescription\n$heightDescription',
child: showWidth ? widthWidget : heightWidget,
),
),
);
}
}
class PaddingVisualizerWidget extends StatelessWidget {
const PaddingVisualizerWidget(
this.renderProperties, {
required this.horizontal,
Key? key,
}) : super(key: key);
final RenderProperties renderProperties;
final bool horizontal;
@override
Widget build(BuildContext context) {
final colorScheme = Theme.of(context).colorScheme;
final heightDescription =
'h=${toStringAsFixed(renderProperties.realHeight)}';
final widthDescription = 'w=${toStringAsFixed(renderProperties.realWidth)}';
final widthWidget = Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Flexible(
child: dimensionDescription(
TextSpan(
text: widthDescription,
),
false,
colorScheme,
),
),
Container(
margin: EdgeInsets.symmetric(vertical: arrowMargin),
child: ArrowWrapper.bidirectional(
arrowColor: widthIndicatorColor,
direction: Axis.horizontal,
arrowHeadSize: arrowHeadSize,
),
),
],
);
final heightWidget = SizedBox(
width: heightOnlyIndicatorSize,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Flexible(
child: dimensionDescription(
TextSpan(text: heightDescription),
false,
colorScheme,
),
),
Container(
margin: EdgeInsets.symmetric(horizontal: arrowMargin),
child: ArrowWrapper.bidirectional(
arrowColor: heightIndicatorColor,
direction: Axis.vertical,
arrowHeadSize: arrowHeadSize,
childMarginFromArrow: 0.0,
),
),
],
),
);
return Positioned(
top: renderProperties.offset.dy,
left: renderProperties.offset.dx,
child: SizedBox(
width: safePositiveDouble(renderProperties.width),
height: safePositiveDouble(renderProperties.height),
child: horizontal ? widthWidget : heightWidget,
),
);
}
}
| devtools/packages/devtools_app/lib/src/screens/inspector/layout_explorer/ui/free_space.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/inspector/layout_explorer/ui/free_space.dart",
"repo_id": "devtools",
"token_count": 2163
} | 93 |
// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:flutter/material.dart';
import '../../../../shared/banner_messages.dart';
import '../../../../shared/http/http_service.dart' as http_service;
import '../../../../shared/screen.dart';
import '../../../../shared/utils.dart';
import '../../panes/chart/chart_pane.dart';
import '../../panes/chart/chart_pane_controller.dart';
import '../../panes/chart/memory_android_chart.dart';
import '../../panes/chart/memory_events_pane.dart';
import '../../panes/chart/memory_vm_chart.dart';
import '../../panes/control/control_pane.dart';
import 'memory_controller.dart';
import 'memory_tabs.dart';
class ConnectedMemoryBody extends StatefulWidget {
const ConnectedMemoryBody({super.key});
@override
State<ConnectedMemoryBody> createState() => _ConnectedMemoryBodyState();
}
class _ConnectedMemoryBodyState extends State<ConnectedMemoryBody>
with
AutoDisposeMixin,
SingleTickerProviderStateMixin,
ProvidedControllerMixin<MemoryController, ConnectedMemoryBody> {
MemoryController get memoryController => controller;
late MemoryChartPaneController _chartController;
final _focusNode = FocusNode(debugLabel: 'memory');
@override
void initState() {
super.initState();
autoDisposeFocusNode(_focusNode);
}
@override
void didChangeDependencies() {
super.didChangeDependencies();
maybePushDebugModeMemoryMessage(context, ScreenMetaData.memory.id);
maybePushHttpLoggingMessage(context, ScreenMetaData.memory.id);
if (!initController()) return;
addAutoDisposeListener(http_service.httpLoggingState, () {
maybePushHttpLoggingMessage(context, ScreenMetaData.memory.id);
});
final vmChartController = VMChartController(controller);
_chartController = MemoryChartPaneController(
event: EventChartController(controller),
vm: vmChartController,
android: AndroidChartController(
controller,
sharedLabels: vmChartController.labelTimestamps,
),
);
}
@override
Widget build(BuildContext context) {
return Column(
key: MemoryChartPane.hoverKey,
children: [
MemoryControlPane(controller: controller),
const SizedBox(height: intermediateSpacing),
MemoryChartPane(
chartController: _chartController,
keyFocusNode: _focusNode,
),
Expanded(
child: MemoryTabView(memoryController),
),
],
);
}
}
| devtools/packages/devtools_app/lib/src/screens/memory/framework/connected/connected_screen_body.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/memory/framework/connected/connected_screen_body.dart",
"repo_id": "devtools",
"token_count": 934
} | 94 |
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
enum ChartType {
dartHeaps,
androidHeaps,
}
/// Automatic pruning of collected memory statistics (plotted) full data is
/// still retained. Default is the best view each tick is 10 pixels, the
/// width of an event symbol e.g., snapshot, monitor, etc.
enum ChartInterval {
theDefault(Duration.zero, 'Default'),
oneMinute(Duration(minutes: 1), '1 Minute'),
fiveMinutes(Duration(minutes: 5), '5 Minutes'),
tenMinutes(Duration(minutes: 10), '10 Minutes'),
all(null, 'All');
const ChartInterval(this.duration, this.displayName);
final Duration? duration;
final String displayName;
}
| devtools/packages/devtools_app/lib/src/screens/memory/panes/chart/primitives.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/memory/panes/chart/primitives.dart",
"repo_id": "devtools",
"token_count": 222
} | 95 |
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:devtools_app_shared/ui.dart';
import 'package:flutter/material.dart';
import '../../../../../shared/analytics/analytics.dart' as ga;
import '../../../../../shared/analytics/constants.dart' as gac;
import '../../../../../shared/globals.dart';
import '../../../../../shared/primitives/byte_utils.dart';
import '../../../../../shared/primitives/utils.dart';
import '../../../../../shared/table/table.dart';
import '../../../../../shared/table/table_data.dart';
import '../../../shared/heap/heap.dart';
import '../../../shared/primitives/simple_elements.dart';
import '../../../shared/widgets/class_filter.dart';
import '../../../shared/widgets/shared_memory_widgets.dart';
import '../controller/class_data.dart';
import 'instances.dart';
class _ClassNameColumn extends ColumnData<SingleClassStats>
implements
ColumnRenderer<SingleClassStats>,
ColumnHeaderRenderer<SingleClassStats> {
_ClassNameColumn(this.data)
: super(
'Class',
titleTooltip: 'Class name',
fixedWidthPx: scaleByFontFactor(200.0),
alignment: ColumnAlignment.left,
);
final ClassesTableSingleData data;
@override
String? getValue(SingleClassStats dataObject) =>
dataObject.heapClass.className;
@override
bool get supportsSorting => true;
@override
// We are removing the tooltip, because it is provided by [HeapClassView].
String getTooltip(SingleClassStats classStats) => '';
@override
Widget build(
BuildContext context,
SingleClassStats data, {
bool isRowSelected = false,
bool isRowHovered = false,
VoidCallback? onPressed,
}) {
return HeapClassView(
theClass: data.heapClass,
showCopyButton: isRowSelected,
copyGaItem: gac.MemoryEvent.diffClassSingleCopy,
rootPackage: serviceConnection.serviceManager.rootInfoNow().package,
);
}
@override
Widget? buildHeader(
BuildContext context,
Widget Function() defaultHeaderRenderer,
) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expanded(child: defaultHeaderRenderer()),
ClassFilterButton(data.filterData),
],
);
}
}
class _InstanceColumn extends ColumnData<SingleClassStats>
implements ColumnRenderer<SingleClassStats> {
_InstanceColumn(this.classData)
: super(
'Instances',
titleTooltip: nonGcableInstancesColumnTooltip,
fixedWidthPx: scaleByFontFactor(80.0),
alignment: ColumnAlignment.right,
);
final ClassesTableSingleData classData;
@override
int getValue(SingleClassStats dataObject) => dataObject.objects.instanceCount;
@override
bool get numeric => true;
@override
Widget? build(
BuildContext context,
SingleClassStats data, {
bool isRowSelected = false,
bool isRowHovered = false,
VoidCallback? onPressed,
}) {
return HeapInstanceTableCell(
data.objects,
classData.heap,
data.heapClass,
isSelected: isRowSelected,
);
}
}
class _ShallowSizeColumn extends ColumnData<SingleClassStats> {
_ShallowSizeColumn()
: super(
'Shallow Dart Size',
titleTooltip: SizeType.shallow.description,
fixedWidthPx: scaleByFontFactor(120.0),
alignment: ColumnAlignment.right,
);
@override
int getValue(SingleClassStats classStats) => classStats.objects.shallowSize;
@override
bool get numeric => true;
@override
String getDisplayValue(SingleClassStats classStats) =>
prettyPrintBytes(getValue(classStats), includeUnit: true)!;
}
class _RetainedSizeColumn extends ColumnData<SingleClassStats> {
_RetainedSizeColumn(this.classData)
: super(
'Retained Dart Size',
titleTooltip: SizeType.retained.description,
fixedWidthPx: scaleByFontFactor(130.0),
alignment: ColumnAlignment.right,
);
final ClassesTableSingleData classData;
@override
int getValue(SingleClassStats dataObject) => dataObject.objects.retainedSize;
@override
bool get numeric => true;
@override
String getDisplayValue(SingleClassStats dataObject) {
final value = getValue(dataObject);
final bytes = prettyPrintRetainedSize(value)!;
final percents =
percent(value / classData.totalHeapSize(), fractionDigits: 0);
return '$bytes ($percents)';
}
}
class _ClassesTableSingleColumns {
_ClassesTableSingleColumns(this.classData);
late final retainedSizeColumn = _RetainedSizeColumn(classData);
final ClassesTableSingleData classData;
late final columnList = <ColumnData<SingleClassStats>>[
_ClassNameColumn(classData),
_InstanceColumn(classData),
_ShallowSizeColumn(),
retainedSizeColumn,
];
}
class ClassesTableSingle extends StatelessWidget {
ClassesTableSingle({
super.key,
required this.classes,
required this.classesData,
}) : _columns = _ClassesTableSingleColumns(classesData);
final List<SingleClassStats> classes;
final ClassesTableSingleData classesData;
final _ClassesTableSingleColumns _columns;
@override
Widget build(BuildContext context) {
// We want to preserve the sorting and sort directions for ClassesTableDiff
// no matter what the data passed to it is.
const dataKey = 'ClassesTableSingle';
return FlatTable<SingleClassStats>(
columns: _columns.columnList,
data: classes,
dataKey: dataKey,
keyFactory: (e) => Key(e.heapClass.fullName),
selectionNotifier: classesData.selection,
onItemSelected: (_) => ga.select(
gac.memory,
gac.MemoryEvent.diffClassSingleSelect,
),
defaultSortColumn: _columns.retainedSizeColumn,
defaultSortDirection: SortDirection.descending,
);
}
}
| devtools/packages/devtools_app/lib/src/screens/memory/panes/diff/widgets/classes_table_single.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/memory/panes/diff/widgets/classes_table_single.dart",
"repo_id": "devtools",
"token_count": 2132
} | 96 |
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/foundation.dart';
import '../../../../shared/globals.dart';
import '../../../../shared/memory/class_name.dart';
enum ClassFilterType {
showAll,
except,
only,
}
class ClassFilterData {
ClassFilterData({
required this.filter,
required this.onChanged,
});
final ValueListenable<ClassFilter> filter;
final ApplyFilterCallback onChanged;
late final String? rootPackage =
serviceConnection.serviceManager.rootInfoNow().package;
}
/// What should be done to apply new filter to a set of data.
enum FilteringTask {
/// New filter is equivalent to previous, so nothing should be done.
doNothing,
/// Previous filtering results cannot be reused.
refilter,
/// Previous filtering results can be reused.
reuse,
}
typedef ApplyFilterCallback = void Function(ClassFilter);
@immutable
class ClassFilter {
ClassFilter({
required this.filterType,
required String except,
required String? only,
}) : except = _trimByLine(except),
only = only == null ? null : _trimByLine(only);
ClassFilter.empty()
: this(
filterType: ClassFilterType.except,
except: defaultExceptString,
only: null,
);
@visibleForTesting
static final defaultExceptString =
'${ClassType.runtime.alias}\n${ClassType.sdk.alias}';
static String _trimByLine(String value) =>
value.split('\n').map((e) => e.trim()).join('\n');
final ClassFilterType filterType;
final String except;
/// If the value is null, it should be initialized before displaying.
final String? only;
bool get isEmpty =>
filterType == ClassFilterType.showAll ||
(filterType == ClassFilterType.except && except.trim().isEmpty) ||
(filterType == ClassFilterType.only && (only ?? '').trim().isEmpty);
String get buttonTooltip {
if (isEmpty) return 'Filter classes and packages.';
return displayString;
}
bool equals(ClassFilter value) {
return value.filterType == filterType &&
value.except == except &&
value.only == only;
}
Set<String> _filtersAsSet() {
Set<String> stringToSet(String? s) => s == null
? {}
: s
.split(RegExp(',|\n'))
.map((e) => e.trim())
.where((e) => e.isNotEmpty)
.toSet();
switch (filterType) {
case ClassFilterType.showAll:
return {};
case ClassFilterType.except:
return stringToSet(except);
case ClassFilterType.only:
return stringToSet(only);
}
}
late final Set<String> filters = _filtersAsSet();
/// Task to be applied when filter changed.
@visibleForTesting
FilteringTask task({required ClassFilter? previous}) {
if (previous == null) return FilteringTask.refilter;
if (filterType == previous.filterType &&
setEquals(filters, previous.filters)) {
return FilteringTask.doNothing;
}
if (filterType == ClassFilterType.only &&
previous.filterType == ClassFilterType.only &&
previous.filters.containsAll(filters)) {
return FilteringTask.reuse;
}
if (filterType == ClassFilterType.except &&
previous.filterType == ClassFilterType.except &&
filters.containsAll(previous.filters)) {
return FilteringTask.reuse;
}
return FilteringTask.refilter;
}
String get displayString {
switch (filterType) {
case ClassFilterType.showAll:
return 'Show all classes';
case ClassFilterType.except:
return 'Show all classes, except:\n$except';
case ClassFilterType.only:
return 'Show only:\n$only';
}
}
bool apply(HeapClassName className, String? rootPackage) {
if (className.isRoot) return false;
if (filterType == ClassFilterType.showAll) return true;
for (var filter in filters) {
if (_isMatch(className, filter, rootPackage)) {
return filterType == ClassFilterType.only;
}
}
return filterType == ClassFilterType.except;
}
/// Filters items in [original] by class with [newFilter].
///
/// Utilizes previous filtering results, that are
/// [oldFiltered] with [oldFilter], if possible.
///
/// Uses [extractClass] to get class from an item in the list.
///
/// Uses [rootPackage] to pass to filter for root package.
/// alias replacement.
static List<T> filter<T>({
required ClassFilter? oldFilter,
required List<T>? oldFiltered,
required ClassFilter newFilter,
required List<T> original,
required HeapClassName Function(T) extractClass,
required String? rootPackage,
}) {
if ((oldFilter == null) != (oldFiltered == null)) {
throw StateError('Nullness should match.');
}
// Return previous data if filter did not change.
if (oldFilter == newFilter) return oldFiltered!;
// Return previous data if filter is identical.
final task = newFilter.task(previous: oldFilter);
if (task == FilteringTask.doNothing) return original;
final Iterable<T> dataToFilter;
if (task == FilteringTask.refilter) {
dataToFilter = original;
} else if (task == FilteringTask.reuse) {
dataToFilter = oldFiltered!;
} else {
throw StateError('Unexpected task: $task.');
}
final result = dataToFilter
.where((e) => newFilter.apply(extractClass(e), rootPackage))
.toList();
return result;
}
bool _isMatch(HeapClassName className, String filter, String? rootPackage) {
if (className.fullName.contains(filter)) return true;
final classType = className.classType(rootPackage);
return filter == classType.alias;
}
}
| devtools/packages/devtools_app/lib/src/screens/memory/shared/heap/class_filter.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/memory/shared/heap/class_filter.dart",
"repo_id": "devtools",
"token_count": 2048
} | 97 |
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../../shared/analytics/analytics.dart' as ga;
import '../../shared/analytics/constants.dart' as gac;
import '../../shared/common_widgets.dart';
import '../../shared/config_specific/copy_to_clipboard/copy_to_clipboard.dart';
import '../../shared/globals.dart';
import '../../shared/http/curl_command.dart';
import '../../shared/http/http_request_data.dart';
import '../../shared/primitives/utils.dart';
import '../../shared/screen.dart';
import '../../shared/table/table.dart';
import '../../shared/table/table_data.dart';
import '../../shared/ui/filter.dart';
import '../../shared/ui/search.dart';
import '../../shared/utils.dart';
import 'network_controller.dart';
import 'network_model.dart';
import 'network_request_inspector.dart';
class NetworkScreen extends Screen {
NetworkScreen() : super.fromMetaData(ScreenMetaData.network);
static final id = ScreenMetaData.network.id;
@override
String get docPageId => screenId;
@override
Widget buildScreenBody(BuildContext context) => const NetworkScreenBody();
@override
Widget buildStatus(BuildContext context) {
final networkController = Provider.of<NetworkController>(context);
final color = Theme.of(context).colorScheme.onPrimary;
return MultiValueListenableBuilder(
listenables: [
networkController.requests,
networkController.filteredData,
],
builder: (context, values, child) {
final networkRequests = values.first as List<NetworkRequest>;
final filteredRequests = values.second as List<NetworkRequest>;
final filteredCount = filteredRequests.length;
final totalCount = networkRequests.length;
return Row(
mainAxisSize: MainAxisSize.min,
children: [
Text(
'Showing ${nf.format(filteredCount)} of '
'${nf.format(totalCount)} '
'${pluralize('request', totalCount)}',
),
const SizedBox(width: denseSpacing),
child!,
],
);
},
child: ValueListenableBuilder<bool>(
valueListenable: networkController.recordingNotifier,
builder: (context, recording, _) {
return SizedBox(
width: smallProgressSize,
height: smallProgressSize,
child: recording
? SmallCircularProgressIndicator(
valueColor: AlwaysStoppedAnimation<Color>(color),
)
: const SizedBox(),
);
},
),
);
}
}
class NetworkScreenBody extends StatefulWidget {
const NetworkScreenBody({super.key});
static const filterQueryInstructions = '''
Type a filter query to show or hide specific requests.
Any text that is not paired with an available filter key below will be queried against all categories (method, uri, status, type).
Available filters:
'method', 'm' (e.g. 'm:get', '-m:put,patch')
'status', 's' (e.g. 's:200', '-s:404')
'type', 't' (e.g. 't:json', '-t:ws')
Example queries:
'my-endpoint method:put,post -status:404 type:json'
'example.com -m:get s:200,201 t:htm,html,json'
'http s:404'
'POST'
''';
@override
State<StatefulWidget> createState() => _NetworkScreenBodyState();
}
class _NetworkScreenBodyState extends State<NetworkScreenBody>
with
AutoDisposeMixin,
ProvidedControllerMixin<NetworkController, NetworkScreenBody> {
@override
void initState() {
super.initState();
ga.screen(NetworkScreen.id);
}
@override
void didChangeDependencies() {
super.didChangeDependencies();
if (!initController()) return;
unawaited(controller.startRecording());
cancelListeners();
addAutoDisposeListener(
serviceConnection.serviceManager.isolateManager.mainIsolate,
() {
if (serviceConnection.serviceManager.isolateManager.mainIsolate.value !=
null) {
unawaited(controller.startRecording());
}
},
);
}
@override
void dispose() {
// TODO(kenz): this won't work well if we eventually have multiple clients
// that want to listen to network data.
controller.stopRecording();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Column(
children: [
_NetworkProfilerControls(controller: controller),
const SizedBox(height: intermediateSpacing),
Expanded(
child: _NetworkProfilerBody(controller: controller),
),
],
);
}
}
/// The row of controls that control the Network profiler (e.g., record, pause,
/// clear, search, filter, etc.).
class _NetworkProfilerControls extends StatefulWidget {
const _NetworkProfilerControls({
Key? key,
required this.controller,
}) : super(key: key);
static const _includeTextWidth = 810.0;
final NetworkController controller;
@override
State<_NetworkProfilerControls> createState() =>
_NetworkProfilerControlsState();
}
class _NetworkProfilerControlsState extends State<_NetworkProfilerControls>
with AutoDisposeMixin {
late List<NetworkRequest> _requests;
late List<NetworkRequest> _filteredRequests;
bool _recording = false;
@override
void initState() {
super.initState();
_recording = widget.controller.recordingNotifier.value;
addAutoDisposeListener(widget.controller.recordingNotifier, () {
setState(() {
_recording = widget.controller.recordingNotifier.value;
});
});
_requests = widget.controller.requests.value;
addAutoDisposeListener(widget.controller.requests, () {
setState(() {
_requests = widget.controller.requests.value;
});
});
_filteredRequests = widget.controller.filteredData.value;
addAutoDisposeListener(widget.controller.filteredData, () {
setState(() {
_filteredRequests = widget.controller.filteredData.value;
});
});
}
@override
Widget build(BuildContext context) {
final hasRequests = _filteredRequests.isNotEmpty;
return Row(
children: [
PauseButton(
minScreenWidthForTextBeforeScaling:
_NetworkProfilerControls._includeTextWidth,
tooltip: 'Pause recording network traffic',
gaScreen: gac.network,
gaSelection: gac.pause,
onPressed:
_recording ? () => widget.controller.togglePolling(false) : null,
),
const SizedBox(width: denseSpacing),
ResumeButton(
minScreenWidthForTextBeforeScaling:
_NetworkProfilerControls._includeTextWidth,
tooltip: 'Resume recording network traffic',
gaScreen: gac.network,
gaSelection: gac.resume,
onPressed:
_recording ? null : () => widget.controller.togglePolling(true),
),
const SizedBox(width: denseSpacing),
ClearButton(
minScreenWidthForTextBeforeScaling:
_NetworkProfilerControls._includeTextWidth,
gaScreen: gac.network,
gaSelection: gac.clear,
onPressed: widget.controller.clear,
),
const SizedBox(width: defaultSpacing),
const Expanded(child: SizedBox()),
// TODO(kenz): fix focus issue when state is refreshed
SearchField<NetworkController>(
searchController: widget.controller,
searchFieldEnabled: hasRequests,
searchFieldWidth: wideSearchFieldWidth,
),
const SizedBox(width: denseSpacing),
DevToolsFilterButton(
onPressed: _showFilterDialog,
isFilterActive: _filteredRequests.length != _requests.length,
),
],
);
}
void _showFilterDialog() {
unawaited(
showDialog(
context: context,
builder: (context) => FilterDialog<NetworkRequest>(
controller: widget.controller,
queryInstructions: NetworkScreenBody.filterQueryInstructions,
),
),
);
}
}
class _NetworkProfilerBody extends StatelessWidget {
const _NetworkProfilerBody({Key? key, required this.controller})
: super(key: key);
final NetworkController controller;
@override
Widget build(BuildContext context) {
return SplitPane(
initialFractions: const [0.5, 0.5],
minSizes: const [200, 200],
axis: Axis.horizontal,
children: [
ValueListenableBuilder<List<NetworkRequest>>(
valueListenable: controller.filteredData,
builder: (context, filteredRequests, _) {
return NetworkRequestsTable(
networkController: controller,
requests: filteredRequests,
searchMatchesNotifier: controller.searchMatches,
activeSearchMatchNotifier: controller.activeSearchMatch,
);
},
),
NetworkRequestInspector(controller),
],
);
}
}
class NetworkRequestsTable extends StatelessWidget {
const NetworkRequestsTable({
Key? key,
required this.networkController,
required this.requests,
required this.searchMatchesNotifier,
required this.activeSearchMatchNotifier,
}) : super(key: key);
static final methodColumn = MethodColumn();
static final addressColumn = UriColumn();
static final statusColumn = StatusColumn();
static final typeColumn = TypeColumn();
static final durationColumn = DurationColumn();
static final timestampColumn = TimestampColumn();
static final actionsColumn = ActionsColumn();
static final columns = <ColumnData<NetworkRequest>>[
methodColumn,
addressColumn,
statusColumn,
typeColumn,
durationColumn,
timestampColumn,
actionsColumn,
];
final NetworkController networkController;
final List<NetworkRequest> requests;
final ValueListenable<List<NetworkRequest>> searchMatchesNotifier;
final ValueListenable<NetworkRequest?> activeSearchMatchNotifier;
@override
Widget build(BuildContext context) {
return RoundedOutlinedBorder(
clip: true,
// TODO(kenz): use SearchableFlatTable instead.
child: FlatTable<NetworkRequest?>(
keyFactory: (NetworkRequest? data) => ValueKey<NetworkRequest?>(data),
data: requests,
dataKey: 'network-requests',
searchMatchesNotifier: searchMatchesNotifier,
activeSearchMatchNotifier: activeSearchMatchNotifier,
autoScrollContent: true,
columns: columns,
selectionNotifier: networkController.selectedRequest,
defaultSortColumn: timestampColumn,
defaultSortDirection: SortDirection.ascending,
onItemSelected: (item) {
if (item is DartIOHttpRequestData) {
unawaited(item.getFullRequestData());
networkController.resetDropDown();
}
},
),
);
}
}
class UriColumn extends ColumnData<NetworkRequest>
implements ColumnRenderer<NetworkRequest> {
UriColumn()
: super.wide(
'Uri',
minWidthPx: scaleByFontFactor(100.0),
);
@override
String getValue(NetworkRequest dataObject) {
return dataObject.uri;
}
@override
Widget build(
BuildContext context,
NetworkRequest data, {
bool isRowSelected = false,
bool isRowHovered = false,
VoidCallback? onPressed,
}) {
final value = getDisplayValue(data);
return SelectableText(
value,
maxLines: 1,
style: const TextStyle(overflow: TextOverflow.ellipsis),
// [onPressed] needs to be passed along to [SelectableText] so that a
// click on the text will still trigger the [onPressed] action for the
// row.
onTap: onPressed,
);
}
}
class MethodColumn extends ColumnData<NetworkRequest> {
MethodColumn() : super('Method', fixedWidthPx: scaleByFontFactor(70));
@override
String getValue(NetworkRequest dataObject) {
return dataObject.method;
}
}
class ActionsColumn extends ColumnData<NetworkRequest>
implements ColumnRenderer<NetworkRequest> {
ActionsColumn()
: super(
'',
fixedWidthPx: scaleByFontFactor(32),
alignment: ColumnAlignment.right,
);
static const _actionSplashRadius = 16.0;
@override
bool get supportsSorting => false;
@override
bool get includeHeader => false;
@override
String getValue(NetworkRequest dataObject) {
return '';
}
List<PopupMenuItem> _buildOptions(NetworkRequest data) {
return [
if (data is DartIOHttpRequestData) ...[
PopupMenuItem(
child: const Text('Copy as URL'),
onTap: () {
unawaited(
copyToClipboard(
data.uri,
'Copied the URL to the clipboard',
),
);
},
),
PopupMenuItem(
child: const Text('Copy as cURL'),
onTap: () {
unawaited(
copyToClipboard(
CurlCommand.from(data).toString(),
'Copied the cURL command to the clipboard',
),
);
},
),
],
];
}
@override
Widget build(
BuildContext context,
NetworkRequest data, {
bool isRowSelected = false,
bool isRowHovered = false,
VoidCallback? onPressed,
}) {
final options = _buildOptions(data);
// Only show the actions button when there are options and the row is
// currently selected.
if (options.isEmpty || !isRowSelected) return const SizedBox.shrink();
return PopupMenuButton(
icon: const Icon(Icons.more_vert),
padding: const EdgeInsets.symmetric(horizontal: densePadding),
splashRadius: _actionSplashRadius,
tooltip: '',
itemBuilder: (context) => options,
);
}
}
class StatusColumn extends ColumnData<NetworkRequest>
implements ColumnRenderer<NetworkRequest> {
StatusColumn()
: super(
'Status',
alignment: ColumnAlignment.right,
fixedWidthPx: scaleByFontFactor(62),
);
@override
String? getValue(NetworkRequest dataObject) {
return dataObject.status;
}
@override
String getDisplayValue(NetworkRequest dataObject) {
return dataObject.status == null ? '--' : dataObject.status.toString();
}
@override
Widget build(
BuildContext context,
NetworkRequest data, {
bool isRowSelected = false,
bool isRowHovered = false,
VoidCallback? onPressed,
}) {
final theme = Theme.of(context);
return Text(
getDisplayValue(data),
style: data.didFail
? TextStyle(color: theme.colorScheme.error)
: theme.regularTextStyle,
);
}
}
class TypeColumn extends ColumnData<NetworkRequest> {
TypeColumn()
: super(
'Type',
alignment: ColumnAlignment.right,
fixedWidthPx: scaleByFontFactor(62),
);
@override
String getValue(NetworkRequest dataObject) {
return dataObject.type;
}
@override
String getDisplayValue(NetworkRequest dataObject) {
return dataObject.type;
}
}
class DurationColumn extends ColumnData<NetworkRequest> {
DurationColumn()
: super(
'Duration',
alignment: ColumnAlignment.right,
fixedWidthPx: scaleByFontFactor(80),
);
@override
int? getValue(NetworkRequest dataObject) {
return dataObject.duration?.inMilliseconds;
}
@override
String getDisplayValue(NetworkRequest dataObject) {
final ms = getValue(dataObject);
return ms == null
? 'Pending'
: durationText(
Duration(milliseconds: ms),
fractionDigits: 0,
);
}
}
class TimestampColumn extends ColumnData<NetworkRequest> {
TimestampColumn()
: super(
'Timestamp',
alignment: ColumnAlignment.right,
fixedWidthPx: scaleByFontFactor(135),
);
@override
DateTime? getValue(NetworkRequest dataObject) {
return dataObject.startTimestamp;
}
@override
String getDisplayValue(NetworkRequest dataObject) {
return formatDateTime(dataObject.startTimestamp!);
}
}
| devtools/packages/devtools_app/lib/src/screens/network/network_screen.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/network/network_screen.dart",
"repo_id": "devtools",
"token_count": 6428
} | 98 |
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'dart:math' as math;
import 'package:devtools_app_shared/ui.dart';
import 'package:flutter/material.dart';
import '../../../../shared/analytics/constants.dart' as gac;
import '../../../../shared/common_widgets.dart';
import '../../../../shared/globals.dart';
import '../../../../shared/primitives/utils.dart';
import '../../../../shared/table/table.dart';
import '../../../../shared/table/table_data.dart';
import '../../performance_utils.dart';
import 'raster_stats_controller.dart';
import 'raster_stats_model.dart';
class RasterStatsView extends StatelessWidget {
const RasterStatsView({
super.key,
required this.rasterStatsController,
required this.impellerEnabled,
});
final RasterStatsController rasterStatsController;
final bool impellerEnabled;
@override
Widget build(BuildContext context) {
if (impellerEnabled) {
return Center(
child: RichText(
textAlign: TextAlign.center,
text: TextSpan(
text: 'The Raster Stats tool is not currently available for the '
'Impeller backend.\nLearn more about the status of ',
style: Theme.of(context).regularTextStyle,
children: [
LinkTextSpan(
link: Link(
display: 'Impeller',
url: impellerDocsUrl,
gaScreenName: gac.performance,
gaSelectedItemDescription:
gac.PerformanceDocs.impellerDocsLinkFromRasterStats.name,
),
context: context,
),
const TextSpan(text: '.'),
],
),
),
);
}
return Column(
children: [
if (!offlineController.offlineMode.value)
_RasterStatsControls(
rasterStatsController: rasterStatsController,
),
Expanded(
child: _LayerVisualizer(
rasterStatsController: rasterStatsController,
),
),
],
);
}
}
class _RasterStatsControls extends StatelessWidget {
const _RasterStatsControls({required this.rasterStatsController});
final RasterStatsController rasterStatsController;
@override
Widget build(BuildContext context) {
return OutlineDecoration.onlyBottom(
child: Padding(
padding: const EdgeInsets.all(denseSpacing),
child: Row(
children: [
GaDevToolsButton(
tooltip: 'Take a snapshot of the rendering layers on the current'
' screen',
icon: Icons.camera_outlined,
label: 'Take Snapshot',
gaScreen: gac.performance,
gaSelection: gac.PerformanceEvents.collectRasterStats.name,
onPressed: rasterStatsController.collectRasterStats,
),
const SizedBox(width: denseSpacing),
ClearButton(
gaScreen: gac.performance,
gaSelection: gac.PerformanceEvents.clearRasterStats.name,
onPressed: rasterStatsController.clearData,
),
],
),
),
);
}
}
class _LayerVisualizer extends StatelessWidget {
const _LayerVisualizer({required this.rasterStatsController});
final RasterStatsController rasterStatsController;
@override
Widget build(BuildContext context) {
return MultiValueListenableBuilder(
listenables: [
rasterStatsController.rasterStats,
rasterStatsController.loadingSnapshot,
],
builder: (context, values, _) {
final rasterStats = values.first as RasterStats?;
final loading = values.second as bool;
if (loading) {
return const CenteredCircularProgressIndicator();
}
if (rasterStats == null || rasterStats.layerSnapshots.isEmpty) {
return const Center(
child: Text(
'Take a snapshot to view raster stats for the current screen.',
),
);
}
return SplitPane(
axis: Axis.horizontal,
initialFractions: const [0.5, 0.5],
children: [
LayerSnapshotTable(
controller: rasterStatsController,
snapshots: rasterStats.layerSnapshots,
),
ValueListenableBuilder<LayerSnapshot?>(
valueListenable: rasterStatsController.selectedSnapshot,
builder: (context, snapshot, _) {
return LayerImage(
snapshot: snapshot,
originalFrameSize: rasterStats.originalFrameSize,
includeFullScreenButton: true,
);
},
),
],
);
},
);
}
}
@visibleForTesting
class LayerSnapshotTable extends StatelessWidget {
const LayerSnapshotTable({
Key? key,
required this.controller,
required this.snapshots,
}) : super(key: key);
static final _layerColumn = _LayerColumn();
static final _timeColumn = _RenderingTimeColumn();
static final _percentageColumn = _RenderingTimePercentageColumn();
static final _columns = <ColumnData<LayerSnapshot>>[
_layerColumn,
_timeColumn,
_percentageColumn,
];
final RasterStatsController controller;
final List<LayerSnapshot> snapshots;
@override
Widget build(BuildContext context) {
final borderSide = defaultBorderSide(Theme.of(context));
return Container(
decoration: BoxDecoration(
border: Border(right: borderSide),
),
child: FlatTable<LayerSnapshot>(
keyFactory: (LayerSnapshot snapshot) =>
ValueKey<String?>('${snapshot.id}'),
data: snapshots,
dataKey: 'raster-layer-snapshots',
columns: _columns,
defaultSortColumn: _percentageColumn,
defaultSortDirection: SortDirection.descending,
onItemSelected: controller.selectSnapshot,
selectionNotifier: controller.selectedSnapshot,
),
);
}
}
class _LayerColumn extends ColumnData<LayerSnapshot> {
_LayerColumn()
: super(
'Layer',
fixedWidthPx: scaleByFontFactor(150),
);
@override
String getValue(LayerSnapshot dataObject) => dataObject.displayName;
}
class _RenderingTimeColumn extends ColumnData<LayerSnapshot> {
_RenderingTimeColumn()
: super(
'Rendering time',
fixedWidthPx: scaleByFontFactor(120),
);
@override
int getValue(LayerSnapshot dataObject) => dataObject.duration.inMicroseconds;
@override
String getDisplayValue(LayerSnapshot dataObject) =>
durationText(dataObject.duration);
@override
bool get numeric => true;
}
class _RenderingTimePercentageColumn extends ColumnData<LayerSnapshot> {
_RenderingTimePercentageColumn()
: super(
'Percent rendering time',
fixedWidthPx: scaleByFontFactor(180),
);
@override
double getValue(LayerSnapshot dataObject) =>
dataObject.percentRenderingTimeAsDouble;
@override
String getDisplayValue(LayerSnapshot dataObject) =>
dataObject.percentRenderingTimeDisplay;
@override
bool get numeric => true;
}
@visibleForTesting
class LayerImage extends StatelessWidget {
const LayerImage({
Key? key,
required this.snapshot,
required this.originalFrameSize,
this.includeFullScreenButton = false,
}) : super(key: key);
final LayerSnapshot? snapshot;
final Size? originalFrameSize;
final bool includeFullScreenButton;
double get _fullscreenButtonWidth => defaultButtonHeight + denseSpacing * 2;
static const _placeholderImageSize = 60.0;
@override
Widget build(BuildContext context) {
final snapshot = this.snapshot;
final originalFrameSize = this.originalFrameSize;
if (snapshot == null || originalFrameSize == null) {
return const Icon(
Icons.image,
size: _placeholderImageSize,
);
}
final theme = Theme.of(context);
return Row(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
SizedBox(
width:
includeFullScreenButton ? _fullscreenButtonWidth : defaultSpacing,
),
Flexible(
child: Container(
color: theme.focusColor,
margin: const EdgeInsets.symmetric(horizontal: defaultSpacing),
child: LayoutBuilder(
builder: (context, constraints) {
final scaleFactor = _calculateScaleFactor(
constraints,
originalFrameSize,
);
final scaledSize = _scaledLayerSize(scaleFactor);
final scaledOffset = _scaledLayerOffset(scaleFactor);
final theme = Theme.of(context);
return Stack(
children: [
CustomPaint(
painter: _CheckerBoardBackgroundPainter(
theme.colorScheme.surface,
theme.colorScheme.outlineVariant,
),
child: Image.memory(snapshot.bytes),
),
Positioned(
left: scaledOffset.dx,
top: scaledOffset.dy,
child: Container(
height: scaledSize.height,
width: scaledSize.width,
decoration: BoxDecoration(
border: Border.all(
color: theme.colorScheme.primary,
),
),
),
),
],
);
},
),
),
),
includeFullScreenButton
? _FullScreenButton(
snapshot: snapshot,
originalFrameSize: originalFrameSize,
)
: const SizedBox(width: defaultSpacing),
],
);
}
double _calculateScaleFactor(
BoxConstraints constraints,
Size originalFrameSize,
) {
final widthScaleFactor = constraints.maxWidth / originalFrameSize.width;
final heightScaleFactor = constraints.maxHeight / originalFrameSize.height;
return math.min(widthScaleFactor, heightScaleFactor);
}
Size _scaledLayerSize(double scale) {
final layerSnapshot = snapshot!;
final scaledWidth = layerSnapshot.size.width * scale;
final scaledHeight = layerSnapshot.size.height * scale;
return Size(scaledWidth, scaledHeight);
}
Offset _scaledLayerOffset(double scale) {
final layerSnapshot = snapshot!;
final scaledDx = layerSnapshot.offset.dx * scale;
final scaledDy = layerSnapshot.offset.dy * scale;
return Offset(scaledDx, scaledDy);
}
}
class _FullScreenButton extends StatelessWidget {
const _FullScreenButton({
Key? key,
required this.snapshot,
required this.originalFrameSize,
}) : super(key: key);
final LayerSnapshot snapshot;
final Size originalFrameSize;
@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.only(
bottom: denseSpacing,
right: denseSpacing,
),
alignment: Alignment.bottomRight,
child: GaDevToolsButton.iconOnly(
icon: Icons.fullscreen,
outlined: false,
gaScreen: gac.performance,
gaSelection: gac.PerformanceEvents.fullScreenLayerImage.name,
onPressed: () {
unawaited(
showDialog(
context: context,
builder: (context) => _LayerImageDialog(
snapshot: snapshot,
originalFrameSize: originalFrameSize,
),
),
);
},
),
);
}
}
class _LayerImageDialog extends StatelessWidget {
const _LayerImageDialog({
Key? key,
required this.snapshot,
required this.originalFrameSize,
}) : super(key: key);
final LayerSnapshot snapshot;
final Size originalFrameSize;
static const _padding = 300.0;
@override
Widget build(BuildContext context) {
final media = MediaQuery.of(context);
final mediaWidth = media.size.width;
final mediaHeight = media.size.height;
return DevToolsDialog(
includeDivider: false,
scrollable: false,
content: SizedBox(
width: mediaWidth - _padding,
height: mediaHeight - _padding,
child: LayerImage(
snapshot: snapshot,
originalFrameSize: originalFrameSize,
),
),
actions: const [
DialogCloseButton(),
],
);
}
}
class _CheckerBoardBackgroundPainter extends CustomPainter {
_CheckerBoardBackgroundPainter(Color color1, Color color2)
: _color1 = color1,
_color2 = color2;
final Color _color1;
final Color _color2;
final _squareSize = 20.0;
@override
void paint(Canvas canvas, Size size) {
canvas.clipRect(Rect.fromLTWH(0, 0, size.width, size.height));
final backgroundPaint = Paint()
..color = _color1
..style = PaintingStyle.fill;
final checkerPaint = Paint()
..color = _color2
..style = PaintingStyle.fill;
canvas.drawRect(
Rect.fromLTWH(0, 0, size.width, size.height),
backgroundPaint,
);
bool flipper = true;
for (var x = 0.0; x < size.width; x += _squareSize) {
for (var y = 0.0; y < size.height; y += _squareSize * 2) {
double dy = y;
if (flipper) {
dy += _squareSize;
}
canvas.drawRect(
Rect.fromLTWH(x, dy, _squareSize, _squareSize),
checkerPaint,
);
}
flipper = !flipper;
}
}
@override
bool shouldRepaint(covariant CustomPainter oldDelegate) {
return false;
}
}
| devtools/packages/devtools_app/lib/src/screens/performance/panes/raster_stats/raster_stats.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/performance/panes/raster_stats/raster_stats.dart",
"repo_id": "devtools",
"token_count": 6077
} | 99 |
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:collection/collection.dart';
import 'package:flutter/foundation.dart';
import '../../service/service_manager.dart';
import '../../shared/primitives/trees.dart';
import '../../shared/primitives/utils.dart';
import 'panes/flutter_frames/flutter_frame_model.dart';
import 'panes/raster_stats/raster_stats_model.dart';
import 'panes/rebuild_stats/rebuild_stats_model.dart';
import 'panes/timeline_events/perfetto/tracing/model.dart';
class OfflinePerformanceData {
OfflinePerformanceData({
this.perfettoTraceBinary,
this.frames = const <FlutterFrame>[],
this.selectedFrame,
this.rasterStats,
this.rebuildCountModel,
double? displayRefreshRate,
}) : displayRefreshRate = displayRefreshRate ?? defaultRefreshRate;
factory OfflinePerformanceData.parse(Map<String, Object?> json_) {
final json = _PerformanceDataJson(json_);
final selectedFrameId = json.selectedFrameId;
final frames = json.frames;
final selectedFrame =
frames.firstWhereOrNull((frame) => frame.id == selectedFrameId);
return OfflinePerformanceData(
perfettoTraceBinary: json.traceBinary,
frames: frames,
selectedFrame: selectedFrame,
rasterStats: json.rasterStats,
rebuildCountModel: json.rebuildCountModel,
displayRefreshRate: json.displayRefreshRate,
);
}
static const traceBinaryKey = 'traceBinary';
static const rasterStatsKey = 'rasterStats';
static const rebuildCountModelKey = 'rebuildCountModel';
static const displayRefreshRateKey = 'displayRefreshRate';
static const flutterFramesKey = 'flutterFrames';
static const selectedFrameIdKey = 'selectedFrameId';
final Uint8List? perfettoTraceBinary;
final RasterStats? rasterStats;
final RebuildCountModel? rebuildCountModel;
final double displayRefreshRate;
/// All frames currently visible in the Performance page.
final List<FlutterFrame> frames;
final FlutterFrame? selectedFrame;
bool get isEmpty => perfettoTraceBinary == null;
Map<String, dynamic> toJson() => {
traceBinaryKey: perfettoTraceBinary,
flutterFramesKey: frames.map((frame) => frame.json).toList(),
selectedFrameIdKey: selectedFrame?.id,
displayRefreshRateKey: displayRefreshRate,
rasterStatsKey: rasterStats?.json,
rebuildCountModelKey: rebuildCountModel?.toJson(),
};
}
extension type _PerformanceDataJson(Map<String, Object?> json) {
Uint8List? get traceBinary {
final value =
(json[OfflinePerformanceData.traceBinaryKey] as List?)?.cast<int>();
return value == null ? null : Uint8List.fromList(value);
}
RasterStats? get rasterStats {
final raw = (json[OfflinePerformanceData.rasterStatsKey] as Map? ?? {})
.cast<String, Object>();
return raw.isNotEmpty ? RasterStats.parse(raw) : null;
}
int? get selectedFrameId =>
json[OfflinePerformanceData.selectedFrameIdKey] as int?;
List<FlutterFrame> get frames =>
(json[OfflinePerformanceData.flutterFramesKey] as List? ?? [])
.cast<Map>()
.map((f) => f.cast<String, dynamic>())
.map((f) => FlutterFrame.parse(f))
.toList();
double get displayRefreshRate =>
(json[OfflinePerformanceData.displayRefreshRateKey] as num?)
?.toDouble() ??
defaultRefreshRate;
RebuildCountModel? get rebuildCountModel {
final raw =
(json[OfflinePerformanceData.rebuildCountModelKey] as Map? ?? {})
.cast<String, dynamic>();
return raw.isNotEmpty ? RebuildCountModel.parse(raw) : null;
}
}
class FlutterTimelineEvent extends TreeNode<FlutterTimelineEvent> {
FlutterTimelineEvent(PerfettoTrackEvent firstTrackEvent)
: trackEvents = [firstTrackEvent],
type = firstTrackEvent.timelineEventType {
time.start = Duration(microseconds: firstTrackEvent.timestampMicros);
}
static const rasterEventName = 'Rasterizer::DoDraw';
static const uiEventName = 'Animator::BeginFrame';
/// Perfetto track events associated with this [FlutterTimelineEvent].
final List<PerfettoTrackEvent> trackEvents;
TimelineEventType? type;
TimeRange time = TimeRange();
String? get name => trackEvents.first.name;
int? get flutterFrameNumber => trackEvents.first.flutterFrameNumber;
bool get isUiEvent => type == TimelineEventType.ui;
bool get isRasterEvent => type == TimelineEventType.raster;
bool get isShaderEvent =>
trackEvents.first.isShaderEvent || trackEvents.last.isShaderEvent;
bool get isWellFormed => time.start != null && time.end != null;
void addEndTrackEvent(PerfettoTrackEvent event) {
time.end = Duration(microseconds: event.timestampMicros);
trackEvents.add(event);
}
@override
FlutterTimelineEvent shallowCopy() {
final copy = FlutterTimelineEvent(trackEvents.first);
for (int i = 1; i < trackEvents.length; i++) {
copy.trackEvents.add(trackEvents[i]);
}
copy
..type = type
..time = (TimeRange()
..start = time.start
..end = time.end);
return copy;
}
@visibleForTesting
FlutterTimelineEvent deepCopy() {
final copy = shallowCopy();
copy.parent = parent;
for (FlutterTimelineEvent child in children) {
copy.addChild(child.deepCopy());
}
return copy;
}
@override
String toString() {
final buf = StringBuffer();
format(buf, ' ');
return buf.toString();
}
void writeTrackEventsToBuffer(StringBuffer buf) {
final begin = trackEvents.first;
final end = trackEvents.safeLast;
buf.writeln(begin.toString());
for (FlutterTimelineEvent child in children) {
child.writeTrackEventsToBuffer(buf);
}
if (end != null) {
buf.writeln(end.toString());
}
}
void format(StringBuffer buf, String indent) {
buf.writeln('$indent$name $time');
for (FlutterTimelineEvent child in children) {
child.format(buf, ' $indent');
}
}
}
enum TimelineEventType {
ui,
raster,
other,
}
| devtools/packages/devtools_app/lib/src/screens/performance/performance_model.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/performance/performance_model.dart",
"repo_id": "devtools",
"token_count": 2160
} | 100 |
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import '../../../shared/charts/flame_chart.dart';
import '../../../shared/ui/colors.dart';
import '../../../shared/ui/utils.dart';
import '../cpu_profile_model.dart';
class CpuProfileFlameChart extends FlameChart<CpuProfileData, CpuStackFrame?> {
CpuProfileFlameChart({
super.key,
required CpuProfileData data,
required double width,
required double height,
required ValueListenable<CpuStackFrame?> selectionNotifier,
required ValueListenable<List<CpuStackFrame>> searchMatchesNotifier,
required ValueListenable<CpuStackFrame?> activeSearchMatchNotifier,
required void Function(CpuStackFrame? stackFrame) onDataSelected,
}) : super(
data,
time: data.profileMetaData.time!,
containerWidth: width,
containerHeight: height,
startInset: sideInsetSmall,
endInset: sideInsetSmall,
selectionNotifier: selectionNotifier,
searchMatchesNotifier: searchMatchesNotifier,
activeSearchMatchNotifier: activeSearchMatchNotifier,
onDataSelected: onDataSelected,
);
@override
State<CpuProfileFlameChart> createState() => _CpuProfileFlameChartState();
}
class _CpuProfileFlameChartState
extends FlameChartState<CpuProfileFlameChart, CpuStackFrame> {
static const stackFramePadding = 1;
final stackFrameLefts = <String, double>{};
@override
void initFlameChartElements() {
super.initFlameChartElements();
expandRows(
widget.data.cpuProfileRoot.depth +
rowOffsetForTopPadding +
FlameChart.rowOffsetForBottomPadding,
);
void createChartNodes(CpuStackFrame stackFrame, int row) {
final double width =
widget.startingContentWidth * stackFrame.totalTimeRatio -
stackFramePadding;
final left = startingLeftForStackFrame(stackFrame);
final colorPair = _colorPairForStackFrame(stackFrame);
final node = FlameChartNode<CpuStackFrame>(
key: Key(stackFrame.id),
text: stackFrame.name,
rect: Rect.fromLTWH(left, flameChartNodeTop, width, chartRowHeight),
colorPair: colorPair,
data: stackFrame,
onSelected: (CpuStackFrame frame) => widget.onDataSelected(frame),
)..sectionIndex = 0;
rows[row].addNode(node);
for (CpuStackFrame child in stackFrame.children) {
createChartNodes(child, row + 1);
}
}
createChartNodes(widget.data.cpuProfileRoot, rowOffsetForTopPadding);
}
@override
List<Widget> buildChartOverlays(
BoxConstraints constraints,
BuildContext buildContext,
) {
final colorScheme = Theme.of(context).colorScheme;
return [
CustomPaint(
painter: TimelineGridPainter(
zoom: currentZoom,
constraints: constraints,
verticalScrollOffset: verticalScrollOffset,
horizontalScrollOffset: horizontalScrollOffset,
chartStartInset: widget.startInset,
chartEndInset: widget.endInset,
flameChartWidth: widthWithZoom,
duration: widget.time.duration,
colorScheme: colorScheme,
),
),
];
}
@override
bool isDataVerticallyInView(CpuStackFrame data) {
final verticalScrollOffset = verticalControllerGroup.offset;
final stackFrameTopY = topYForData(data);
return stackFrameTopY > verticalScrollOffset &&
stackFrameTopY + rowHeightWithPadding <
verticalScrollOffset + widget.containerHeight;
}
@override
bool isDataHorizontallyInView(CpuStackFrame data) {
final horizontalScrollOffset = horizontalControllerGroup.offset;
final startX = startXForData(data);
return startX >= horizontalScrollOffset &&
startX <= horizontalScrollOffset + widget.containerWidth;
}
@override
double topYForData(CpuStackFrame data) {
return data.level * rowHeightWithPadding;
}
@override
double startXForData(CpuStackFrame data) {
final x = stackFrameLefts[data.id]! - widget.startInset;
return x * currentZoom;
}
double startingLeftForStackFrame(CpuStackFrame stackFrame) {
final CpuStackFrame? parent = stackFrame.parent;
late double left;
if (parent == null) {
left = widget.startInset;
} else {
final stackFrameIndex = stackFrame.index;
if (stackFrameIndex == 0) {
// This is the first child of parent. [left] should equal the left
// value of [stackFrame]'s parent.
left = stackFrameLefts[parent.id]!;
} else {
assert(stackFrameIndex != -1);
// [stackFrame] is not the first child of its parent. [left] should
// equal the right value of its previous sibling.
final CpuStackFrame previous = parent.children[stackFrameIndex - 1];
left = stackFrameLefts[previous.id]! +
(widget.startingContentWidth * previous.totalTimeRatio);
}
}
stackFrameLefts[stackFrame.id] = left;
return left;
}
ThemedColorPair _colorPairForStackFrame(CpuStackFrame stackFrame) {
if (stackFrame.isNative) return nativeCodeColor;
if (stackFrame.isDartCore) return dartCoreColor;
if (stackFrame.isFlutterCore) return flutterCoreColor;
return appCodeColor;
}
}
| devtools/packages/devtools_app/lib/src/screens/profiler/panes/cpu_flame_chart.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/profiler/panes/cpu_flame_chart.dart",
"repo_id": "devtools",
"token_count": 2037
} | 101 |
// coverage:ignore-file
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target
part of 'result.dart';
// **************************************************************************
// FreezedGenerator
// **************************************************************************
T _$identity<T>(T value) => value;
final _privateConstructorUsedError = UnsupportedError(
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more informations: https://github.com/rrousselGit/freezed#custom-getters-and-methods');
/// @nodoc
class _$ResultTearOff {
const _$ResultTearOff();
_ResultData<T> data<T>(T value) {
return _ResultData<T>(
value,
);
}
_ResultError<T> error<T>(Object error, StackTrace stackTrace) {
return _ResultError<T>(
error,
stackTrace,
);
}
}
/// @nodoc
const $Result = _$ResultTearOff();
/// @nodoc
mixin _$Result<T> {
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(T value) data,
required TResult Function(Object error, StackTrace stackTrace) error,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(T value)? data,
TResult Function(Object error, StackTrace stackTrace)? error,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(T value)? data,
TResult Function(Object error, StackTrace stackTrace)? error,
required TResult orElse(),
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(_ResultData<T> value) data,
required TResult Function(_ResultError<T> value) error,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(_ResultData<T> value)? data,
TResult Function(_ResultError<T> value)? error,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_ResultData<T> value)? data,
TResult Function(_ResultError<T> value)? error,
required TResult orElse(),
}) =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $ResultCopyWith<T, $Res> {
factory $ResultCopyWith(Result<T> value, $Res Function(Result<T>) then) =
_$ResultCopyWithImpl<T, $Res>;
}
/// @nodoc
class _$ResultCopyWithImpl<T, $Res> implements $ResultCopyWith<T, $Res> {
_$ResultCopyWithImpl(this._value, this._then);
final Result<T> _value;
// ignore: unused_field
final $Res Function(Result<T>) _then;
}
/// @nodoc
abstract class _$ResultDataCopyWith<T, $Res> {
factory _$ResultDataCopyWith(
_ResultData<T> value, $Res Function(_ResultData<T>) then) =
__$ResultDataCopyWithImpl<T, $Res>;
$Res call({T value});
}
/// @nodoc
class __$ResultDataCopyWithImpl<T, $Res> extends _$ResultCopyWithImpl<T, $Res>
implements _$ResultDataCopyWith<T, $Res> {
__$ResultDataCopyWithImpl(
_ResultData<T> _value, $Res Function(_ResultData<T>) _then)
: super(_value, (v) => _then(v as _ResultData<T>));
@override
_ResultData<T> get _value => super._value as _ResultData<T>;
@override
$Res call({
Object? value = freezed,
}) {
return _then(_ResultData<T>(
value == freezed
? _value.value
: value // ignore: cast_nullable_to_non_nullable
as T,
));
}
}
/// @nodoc
class _$_ResultData<T> extends _ResultData<T> with DiagnosticableTreeMixin {
_$_ResultData(this.value) : super._();
@override
final T value;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'Result<$T>.data(value: $value)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'Result<$T>.data'))
..add(DiagnosticsProperty('value', value));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _ResultData<T> &&
const DeepCollectionEquality().equals(other.value, value));
}
@override
int get hashCode =>
Object.hash(runtimeType, const DeepCollectionEquality().hash(value));
@JsonKey(ignore: true)
@override
_$ResultDataCopyWith<T, _ResultData<T>> get copyWith =>
__$ResultDataCopyWithImpl<T, _ResultData<T>>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(T value) data,
required TResult Function(Object error, StackTrace stackTrace) error,
}) {
return data(value);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(T value)? data,
TResult Function(Object error, StackTrace stackTrace)? error,
}) {
return data?.call(value);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(T value)? data,
TResult Function(Object error, StackTrace stackTrace)? error,
required TResult orElse(),
}) {
if (data != null) {
return data(value);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(_ResultData<T> value) data,
required TResult Function(_ResultError<T> value) error,
}) {
return data(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(_ResultData<T> value)? data,
TResult Function(_ResultError<T> value)? error,
}) {
return data?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_ResultData<T> value)? data,
TResult Function(_ResultError<T> value)? error,
required TResult orElse(),
}) {
if (data != null) {
return data(this);
}
return orElse();
}
}
abstract class _ResultData<T> extends Result<T> {
factory _ResultData(T value) = _$_ResultData<T>;
_ResultData._() : super._();
T get value;
@JsonKey(ignore: true)
_$ResultDataCopyWith<T, _ResultData<T>> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class _$ResultErrorCopyWith<T, $Res> {
factory _$ResultErrorCopyWith(
_ResultError<T> value, $Res Function(_ResultError<T>) then) =
__$ResultErrorCopyWithImpl<T, $Res>;
$Res call({Object error, StackTrace stackTrace});
}
/// @nodoc
class __$ResultErrorCopyWithImpl<T, $Res> extends _$ResultCopyWithImpl<T, $Res>
implements _$ResultErrorCopyWith<T, $Res> {
__$ResultErrorCopyWithImpl(
_ResultError<T> _value, $Res Function(_ResultError<T>) _then)
: super(_value, (v) => _then(v as _ResultError<T>));
@override
_ResultError<T> get _value => super._value as _ResultError<T>;
@override
$Res call({
Object? error = freezed,
Object? stackTrace = freezed,
}) {
return _then(_ResultError<T>(
error == freezed
? _value.error
: error // ignore: cast_nullable_to_non_nullable
as Object,
stackTrace == freezed
? _value.stackTrace
: stackTrace // ignore: cast_nullable_to_non_nullable
as StackTrace,
));
}
}
/// @nodoc
class _$_ResultError<T> extends _ResultError<T> with DiagnosticableTreeMixin {
_$_ResultError(this.error, this.stackTrace) : super._();
@override
final Object error;
@override
final StackTrace stackTrace;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'Result<$T>.error(error: $error, stackTrace: $stackTrace)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'Result<$T>.error'))
..add(DiagnosticsProperty('error', error))
..add(DiagnosticsProperty('stackTrace', stackTrace));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _ResultError<T> &&
const DeepCollectionEquality().equals(other.error, error) &&
const DeepCollectionEquality()
.equals(other.stackTrace, stackTrace));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(error),
const DeepCollectionEquality().hash(stackTrace));
@JsonKey(ignore: true)
@override
_$ResultErrorCopyWith<T, _ResultError<T>> get copyWith =>
__$ResultErrorCopyWithImpl<T, _ResultError<T>>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(T value) data,
required TResult Function(Object error, StackTrace stackTrace) error,
}) {
return error(this.error, stackTrace);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(T value)? data,
TResult Function(Object error, StackTrace stackTrace)? error,
}) {
return error?.call(this.error, stackTrace);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(T value)? data,
TResult Function(Object error, StackTrace stackTrace)? error,
required TResult orElse(),
}) {
if (error != null) {
return error(this.error, stackTrace);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(_ResultData<T> value) data,
required TResult Function(_ResultError<T> value) error,
}) {
return error(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(_ResultData<T> value)? data,
TResult Function(_ResultError<T> value)? error,
}) {
return error?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_ResultData<T> value)? data,
TResult Function(_ResultError<T> value)? error,
required TResult orElse(),
}) {
if (error != null) {
return error(this);
}
return orElse();
}
}
abstract class _ResultError<T> extends Result<T> {
factory _ResultError(Object error, StackTrace stackTrace) = _$_ResultError<T>;
_ResultError._() : super._();
Object get error;
StackTrace get stackTrace;
@JsonKey(ignore: true)
_$ResultErrorCopyWith<T, _ResultError<T>> get copyWith =>
throw _privateConstructorUsedError;
}
| devtools/packages/devtools_app/lib/src/screens/provider/instance_viewer/result.freezed.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/provider/instance_viewer/result.freezed.dart",
"repo_id": "devtools",
"token_count": 4049
} | 102 |
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:vm_service/vm_service.dart';
import '../vm_developer_common_widgets.dart';
import 'object_inspector_view_controller.dart';
import 'vm_object_model.dart';
// TODO(mtaylee): Finish implementation of ClassInstancesWidget. When done,
// remove this constant, and add the ClassInstancesWidget to
// the class display layout.
const displayClassInstances = false;
/// A widget for the object inspector historyViewport displaying information
/// related to class objects in the Dart VM.
class VmClassDisplay extends StatelessWidget {
const VmClassDisplay({
super.key,
required this.controller,
required this.clazz,
});
final ObjectInspectorViewController controller;
final ClassObject clazz;
@override
Widget build(BuildContext context) {
final child = Row(
children: [
Flexible(
child: VmObjectDisplayBasicLayout(
controller: controller,
object: clazz,
generalDataRows: _classDataRows(clazz),
),
),
if (displayClassInstances)
Flexible(
child: ClassInstancesWidget(
instances: clazz.instances,
),
),
],
);
if (clazz.scriptRef != null) {
return ObjectInspectorCodeView(
codeViewController: controller.codeViewController,
script: clazz.scriptRef!,
object: clazz.ref,
child: child,
);
}
return child;
}
// TODO(mtaylee): Delete 'Currently allocated instances' row when
// ClassInstancesWidget implementation is completed.
/// Generates a list of key-value pairs (map entries) containing the general
/// information of the class object [clazz].
List<MapEntry<String, WidgetBuilder>> _classDataRows(
ClassObject clazz,
) {
final superClass = clazz.obj.superClass;
return [
...vmObjectGeneralDataRows(
controller,
clazz,
),
if (superClass != null)
serviceObjectLinkBuilderMapEntry(
controller: controller,
key: 'Superclass',
object: superClass,
),
selectableTextBuilderMapEntry('SuperType', clazz.obj.superType?.name),
selectableTextBuilderMapEntry(
'Currently allocated instances',
clazz.instances?.totalCount?.toString(),
),
];
}
}
// TODO(mtaylee): Finish implementation of widget to display
// all class instances. When done, remove the last row of the ClassInfoWidget.
/// Displays information on the instances of the Class object.
class ClassInstancesWidget extends StatelessWidget {
const ClassInstancesWidget({
super.key,
required this.instances,
});
final InstanceSet? instances;
@override
Widget build(BuildContext context) {
return VMInfoCard(
title: 'Class Instances',
rowKeyValues: [
selectableTextBuilderMapEntry(
'Currently allocated',
instances?.totalCount?.toString(),
),
selectableTextBuilderMapEntry('Strongly reachable', 'TO-DO'),
selectableTextBuilderMapEntry('All direct instances', 'TO-DO'),
selectableTextBuilderMapEntry('All instances of subclasses', 'TO-DO'),
selectableTextBuilderMapEntry('All instances of implementors', 'TO-DO'),
selectableTextBuilderMapEntry('Reachable size', 'TO-DO'),
selectableTextBuilderMapEntry('Retained size', 'TO-DO'),
],
);
}
}
| devtools/packages/devtools_app/lib/src/screens/vm_developer/object_inspector/vm_class_display.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/vm_developer/object_inspector/vm_class_display.dart",
"repo_id": "devtools",
"token_count": 1321
} | 103 |
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import '../server/server.dart' as server;
import 'analytics.dart' as ga;
import 'analytics_controller.dart';
Future<AnalyticsController> get devToolsAnalyticsController async {
if (_controllerCompleter != null) return _controllerCompleter!.future;
_controllerCompleter = Completer<AnalyticsController>();
var enabled = false;
var firstRun = false;
try {
if (await ga.isAnalyticsEnabled()) {
enabled = true;
}
if (await server.isFirstRun()) {
firstRun = true;
}
} catch (_) {
// Ignore issues if analytics could not be initialized.
}
_controllerCompleter!.complete(
AnalyticsController(
enabled: enabled,
firstRun: firstRun,
onEnableAnalytics: ga.enableAnalytics,
onDisableAnalytics: ga.disableAnalytics,
onSetupAnalytics: () {
ga.initializeGA();
ga.jsHookupListenerForGA();
},
consentMessage: await ga.fetchAnalyticsConsentMessage(),
markConsentMessageAsShown: ga.markConsentMessageAsShown,
),
);
return _controllerCompleter!.future;
}
Completer<AnalyticsController>? _controllerCompleter;
| devtools/packages/devtools_app/lib/src/shared/analytics/_analytics_controller_web.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/analytics/_analytics_controller_web.dart",
"repo_id": "devtools",
"token_count": 454
} | 104 |
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:devtools_app_shared/ui.dart';
import 'package:flutter/material.dart';
import '../common_widgets.dart';
import '../utils.dart';
import 'analytics_controller.dart';
/// Conditionally displays a prompt to request permission for collection of
/// usage analytics.
class AnalyticsPrompt extends StatefulWidget {
const AnalyticsPrompt({super.key, required this.child});
final Widget child;
@override
State<AnalyticsPrompt> createState() => _AnalyticsPromptState();
}
class _AnalyticsPromptState extends State<AnalyticsPrompt>
with ProvidedControllerMixin<AnalyticsController, AnalyticsPrompt> {
@override
void didChangeDependencies() {
super.didChangeDependencies();
initController();
}
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final textTheme = theme.textTheme;
return ValueListenableBuilder<bool>(
valueListenable: controller.shouldPrompt,
builder: (context, showPrompt, child) {
// Mark the consent message as shown for unified_analytics so that devtools
// can be onboarded into the config file
// ~/.dart-tool/dart-flutter-telemetry.config
if (showPrompt) unawaited(controller.markConsentMessageAsShown());
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
if (showPrompt) child!,
Expanded(child: widget.child),
],
);
},
child: Card(
shape: RoundedRectangleBorder(
borderRadius: defaultBorderRadius,
side: BorderSide(
color: theme.focusColor,
),
),
color: theme.canvasColor,
margin: const EdgeInsets.only(bottom: denseSpacing),
child: Padding(
padding: const EdgeInsets.all(defaultSpacing),
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Send usage statistics for DevTools?',
style: textTheme.headlineSmall,
),
IconButton.outlined(
icon: const Icon(Icons.close),
onPressed: controller.hidePrompt,
),
],
),
const Padding(
padding: EdgeInsets.only(top: defaultSpacing),
),
_analyticsDescription(textTheme),
const SizedBox(height: denseRowSpacing),
_actionButtons(),
],
),
),
),
);
}
Widget _analyticsDescription(TextTheme textTheme) {
final consentMessageRegExpResults =
parseAnalyticsConsentMessage(controller.consentMessage);
// When failing to parse the consent message, fallback to
// displaying the consent message in its regular form
if (consentMessageRegExpResults == null) {
return RichText(
text: TextSpan(
children: [
TextSpan(
text: controller.consentMessage,
style: textTheme.titleMedium,
),
],
),
);
}
return RichText(
text: TextSpan(
children: [
TextSpan(
text: consentMessageRegExpResults[0],
style: textTheme.titleMedium,
),
LinkTextSpan(
link: Link(
display: consentMessageRegExpResults[1],
url: consentMessageRegExpResults[1],
),
context: context,
style:
textTheme.titleMedium?.copyWith(color: const Color(0xFF54C1EF)),
),
TextSpan(
text: consentMessageRegExpResults[2],
style: textTheme.titleMedium,
),
],
),
);
}
Widget _actionButtons() {
return Row(
crossAxisAlignment: CrossAxisAlignment.end,
children: [
ElevatedButton(
onPressed: () {
// This will also hide the prompt.
unawaited(controller.toggleAnalyticsEnabled(false));
},
style: ElevatedButton.styleFrom(backgroundColor: Colors.grey),
child: const Text('No thanks.'),
),
const Padding(
padding: EdgeInsets.only(left: defaultSpacing),
),
ElevatedButton(
onPressed: () {
unawaited(controller.toggleAnalyticsEnabled(true));
controller.hidePrompt();
},
child: const Text('Sounds good!'),
),
],
);
}
}
/// This method helps to parse the consent message from
/// `package:unified_analytics` so that the URL can be
/// separated from the block of text so that we can have a
/// hyperlink in the displayed consent message.
List<String>? parseAnalyticsConsentMessage(String consentMessage) {
final results = <String>[];
final RegExp pattern =
RegExp(r'^([\S\s]*)(https?:\/\/[^\s]+)(\)\.)$', multiLine: true);
final matches = pattern.allMatches(consentMessage);
if (matches.isEmpty) {
return null;
}
matches.first.groups([1, 2, 3]).forEach((element) {
results.add(element!);
});
// There should be 3 groups returned if correctly parsed, one
// for most of the text, one for the URL, and one for what comes
// after the URL
if (results.length != 3) {
return null;
}
return results;
}
| devtools/packages/devtools_app/lib/src/shared/analytics/prompt.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/analytics/prompt.dart",
"repo_id": "devtools",
"token_count": 2537
} | 105 |
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:file/file.dart';
import 'package:file/local.dart';
import 'package:logging/logging.dart';
import 'package:path/path.dart' as path;
import 'file.dart';
final _log = Logger('_file_desktop');
FileSystemDesktop createFileSystem() {
return FileSystemDesktop();
}
/// Abstracted local file system access for Flutter Desktop.
class FileSystemDesktop implements FileIO {
final _fs = const LocalFileSystem();
@override
String exportDirectoryName({bool isMemory = false}) =>
_exportDirectory(isMemory: isMemory).path;
/// Flutter Desktop MacOS systemTempDirectory is in Downloads
/// for memory files location is $TMPDIR.
/// Flutter Desktop Linux systemTempDirectory is \tmp
// TODO(terry): isMemory is temporary workaround for listSync hanging issue when
// listing files in Downloads (probably a security issue). Re-work
// how import works using drag/drop.
Directory _exportDirectory({bool isMemory = false}) {
// TODO(terry): macOS returns /var/folders/xxx/yyy for temporary. Where
// xxx & yyy are generated names hard to locate the json file.
if (!isMemory && _fs.systemTempDirectory.dirname.startsWith('/var/')) {
// TODO(terry): For now export the file to the user's Downloads.
final dirPath = _fs.currentDirectory.dirname.split('/');
// check length prevent Memory tab crash in macos
if (dirPath.length > 2) {
final downloadsPath = '/${dirPath[1]}/${dirPath[2]}/Downloads';
return _fs.directory(downloadsPath);
}
}
return _fs.systemTempDirectory;
}
@override
void writeStringToFile(
String filename,
String contents, {
bool isMemory = false,
}) {
final logFile = _exportDirectory(isMemory: isMemory).childFile(filename);
logFile.writeAsStringSync(contents, flush: true);
}
@override
String readStringFromFile(String filename, {bool isMemory = false}) {
final previousCurrentDirectory = _fs.currentDirectory;
// TODO(terry): Use path_provider when available?
_fs.currentDirectory = _exportDirectory(isMemory: isMemory);
final logFile = _fs.currentDirectory.childFile(filename);
final jsonPayload = logFile.readAsStringSync();
_fs.currentDirectory = previousCurrentDirectory;
return jsonPayload;
}
@override
List<String> list({required String prefix, bool isMemory = false}) {
final List<String> logs = [];
try {
// TODO(terry): Use path_provider when available?
final directory = _exportDirectory(isMemory: isMemory);
if (!directory.existsSync()) {
return logs;
}
final allFiles = directory.listSync(followLinks: false);
for (FileSystemEntity entry in allFiles) {
final basename = path.basename(entry.path);
if (_fs.isFileSync(entry.path) && basename.startsWith(prefix)) {
logs.add(basename);
}
}
// Sort by newest file top-most (DateTime is in the filename).
logs.sort((a, b) => b.compareTo(a));
} on FileSystemException catch (e, st) {
// TODO(jacobr): prompt the user to grant permission to access the
// directory if Flutter ever provides that option or consider using an
// alternate directory. This error should generally only occur on MacOS
// desktop Catalina and later where access to the Downloads folder
// is not granted by default.
_log.info(e, e, st);
}
return logs;
}
@override
bool deleteFile(String path, {bool isMemory = false}) {
final previousCurrentDirectory = _fs.currentDirectory;
// TODO(terry): Use path_provider when available?
_fs.currentDirectory = _exportDirectory(isMemory: isMemory);
if (!_fs.isFileSync(path)) return false;
_fs.file(path).deleteSync();
_fs.currentDirectory = previousCurrentDirectory;
return true;
}
}
| devtools/packages/devtools_app/lib/src/shared/config_specific/file/_file_desktop.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/config_specific/file/_file_desktop.dart",
"repo_id": "devtools",
"token_count": 1349
} | 106 |
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:collection/collection.dart' show IterableExtension;
import 'package:devtools_app_shared/utils.dart';
import 'package:vm_service/vm_service.dart';
import '../../connected_app.dart';
import '../../globals.dart';
import '../../primitives/utils.dart';
import '../../ui/search.dart';
import 'eval_service.dart';
AppState get _appState => serviceConnection.appState;
Future<List<String>> autoCompleteResultsFor(
EditingParts parts,
EvalService evalService,
) async {
final result = <String>{};
if (!parts.isField) {
final variables = _appState.variables.value;
result.addAll(removeNullValues(variables.map((variable) => variable.name)));
final thisVariable = variables.firstWhereOrNull(
(variable) => variable.name == 'this',
);
if (thisVariable != null) {
// If a variable named `this` is in scope, we should provide autocompletes
// for all static and instance members of that class as they are in scope
// in Dart. For example, if you evaluate `foo()` that will be equivalent
// to `this.foo()` if foo is an instance member and `ThisClass.foo() if
// foo is a static member.
final thisValue = thisVariable.value;
if (thisValue is InstanceRef) {
await _addAllInstanceMembersToAutocompleteList(
result,
thisValue,
evalService,
);
final classRef = thisValue.classRef;
if (classRef != null) {
result.addAll(
await _autoCompleteMembersFor(
classRef,
evalService,
staticContext: true,
),
);
}
}
}
final frame = _appState.currentFrame.value;
if (frame != null) {
final function = frame.function;
if (function != null) {
final libraryRef = await evalService.findOwnerLibrary(function);
if (libraryRef != null) {
result.addAll(
await libraryMemberAndImportsAutocompletes(
libraryRef,
evalService,
),
);
}
}
}
} else {
var left = parts.leftSide.split(' ').last;
// Removing trailing `.`.
left = left.substring(0, left.length - 1);
try {
final response = await evalService.evalAtCurrentFrame(left);
if (response is InstanceRef) {
final typeClass = response.typeClass;
if (typeClass != null) {
// Assume we want static members for a type class not members of the
// Type object. This is reasonable as Type objects are rarely useful
// in Dart and we will end up with accidental Type objects if the user
// writes `SomeClass.` in the evaluate window.
result.addAll(
await _autoCompleteMembersFor(
typeClass,
evalService,
staticContext: true,
),
);
} else {
await _addAllInstanceMembersToAutocompleteList(
result,
response,
evalService,
);
}
}
} catch (_) {}
}
return removeNullValues(result)
.where((name) => name.startsWith(parts.activeWord))
.toList();
}
// Due to https://github.com/dart-lang/sdk/issues/46221
// we cannot tell what the show clause for an export was so it is unsafe to
// surface exports as if they were library members as there tend to be
// significant false positives for libraries such as Flutter where all of
// dart:ui shows up as in scope from flutter:foundation when it should not be.
bool debugIncludeExports = true;
Future<Set<String>> libraryMemberAndImportsAutocompletes(
LibraryRef libraryRef,
EvalService evalService,
) async {
final values = removeNullValues(
await _appState.cache.libraryMemberAndImportsAutocomplete.putIfAbsent(
libraryRef,
() => _libraryMemberAndImportsAutocompletes(libraryRef, evalService),
),
);
return values.toSet();
}
Future<Set<String>> _libraryMemberAndImportsAutocompletes(
LibraryRef libraryRef,
EvalService evalService,
) async {
final result = <String>{};
try {
final List<Future<Set<String>>> futures = <Future<Set<String>>>[];
futures.add(
libraryMemberAutocompletes(
evalService,
libraryRef,
includePrivates: true,
),
);
final Library library = await evalService.getObject(libraryRef) as Library;
final dependencies = library.dependencies;
if (dependencies != null) {
for (var dependency in library.dependencies!) {
final prefix = dependency.prefix;
final target = dependency.target;
if (prefix != null && prefix.isNotEmpty) {
// We won't give a list of autocompletes once you enter a prefix
// but at least we do include the prefix in the autocompletes list.
result.add(prefix);
} else if (target != null) {
futures.add(
libraryMemberAutocompletes(
evalService,
target,
includePrivates: false,
),
);
}
}
}
(await Future.wait(futures)).forEach(result.addAll);
} catch (_) {
// Silently skip library completions if there is a failure.
}
return result;
}
Future<Set<String>> libraryMemberAutocompletes(
EvalService evalService,
LibraryRef libraryRef, {
required bool includePrivates,
}) async {
var result = removeNullValues(
await _appState.cache.libraryMemberAutocomplete.putIfAbsent(
libraryRef,
() => _libraryMemberAutocompletes(evalService, libraryRef),
),
);
if (!includePrivates) {
result = result.where((name) => !isPrivateMember(name));
}
return result.toSet();
}
Future<Set<String>> _libraryMemberAutocompletes(
EvalService evalService,
LibraryRef libraryRef,
) async {
final result = <String>{};
final Library library = await evalService.getObject(libraryRef) as Library;
final variables = library.variables;
if (variables != null) {
final fields = variables.map((field) => field.name);
result.addAll(removeNullValues(fields));
}
final functions = library.functions;
if (functions != null) {
// The VM shows setters as `<member>=`.
final members =
functions.map((funcRef) => funcRef.name!.replaceAll('=', ''));
result.addAll(removeNullValues(members));
}
final classes = library.classes;
if (classes != null) {
// Autocomplete class names as well
final classNames = classes.map((clazz) => clazz.name);
result.addAll(removeNullValues(classNames));
}
if (debugIncludeExports) {
final List<Future<Set<String>>> futures = <Future<Set<String>>>[];
for (var dependency in library.dependencies!) {
if (!dependency.isImport!) {
final prefix = dependency.prefix;
final target = dependency.target;
if (prefix != null && prefix.isNotEmpty) {
result.add(prefix);
} else if (target != null) {
futures.add(
libraryMemberAutocompletes(
evalService,
target,
includePrivates: false,
),
);
}
}
}
if (futures.isNotEmpty) {
(await Future.wait(futures)).forEach(result.addAll);
}
}
return result;
}
Future<void> _addAllInstanceMembersToAutocompleteList(
Set<String> result,
InstanceRef response,
EvalService controller,
) async {
final Instance instance = await controller.getObject(response) as Instance;
final classRef = instance.classRef;
if (classRef == null) return;
result.addAll(
await _autoCompleteMembersFor(
classRef,
controller,
staticContext: false,
),
);
// TODO(grouma) - This shouldn't be necessary but package:dwds does
// not properly provide superclass information.
final fields = instance.fields;
if (fields == null) return;
final clazz = await controller.classFor(classRef);
final fieldNames = fields
.where((field) => field.decl?.isStatic != null && !field.decl!.isStatic!)
.map((field) => field.decl?.name);
result.addAll(
removeNullValues(fieldNames).where(
(member) => _isAccessible(member, clazz),
),
);
}
Future<Set<String>> _autoCompleteMembersFor(
ClassRef classRef,
EvalService controller, {
required bool staticContext,
}) async {
final result = <String>{};
final clazz = await controller.classFor(classRef);
if (clazz != null) {
final fields = clazz.fields;
if (fields != null) {
final fieldNames = fields
.where((f) => f.isStatic == staticContext)
.map((field) => field.name);
result.addAll(removeNullValues(fieldNames));
}
final functions = clazz.functions;
if (functions != null) {
for (var funcRef in functions) {
if (_validFunction(funcRef, clazz, staticContext)) {
final isConstructor = _isConstructor(funcRef, clazz);
final funcName = funcRef.name;
if (funcName == null) continue;
// The VM shows setters as `<member>=`.
var name = funcName.replaceAll('=', '');
if (isConstructor) {
final clazzName = clazz.name!;
assert(name.startsWith(clazzName));
if (name.length <= clazzName.length + 1) continue;
name = name.substring(clazzName.length + 1);
}
result.add(name);
}
}
}
final superClass = clazz.superClass;
if (!staticContext && superClass != null) {
result.addAll(
await _autoCompleteMembersFor(
superClass,
controller,
staticContext: staticContext,
),
);
}
result.removeWhere((member) => !_isAccessible(member, clazz));
}
return result;
}
bool _validFunction(FuncRef funcRef, Class clazz, bool staticContext) {
// TODO(jacobr): we should include named constructors in static contexts.
return ((_isConstructor(funcRef, clazz) || funcRef.isStatic!) ==
staticContext) &&
!_isOperator(funcRef);
}
bool _isOperator(FuncRef funcRef) => const {
'==',
'+',
'-',
'*',
'/',
'&',
'~',
'|',
'>',
'<',
'>=',
'<=',
'>>',
'<<',
'>>>',
'^',
'%',
'~/',
'unary-',
}.contains(funcRef.name);
bool _isConstructor(FuncRef funcRef, Class clazz) =>
funcRef.name == clazz.name || funcRef.name!.startsWith('${clazz.name}.');
bool _isAccessible(
String member,
Class? clazz,
) {
final frame = _appState.currentFrame.value!;
final currentScript = frame.location!.script;
return !isPrivateMember(member) ||
currentScript!.id == clazz?.location?.script?.id;
}
| devtools/packages/devtools_app/lib/src/shared/console/eval/auto_complete.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/console/eval/auto_complete.dart",
"repo_id": "devtools",
"token_count": 4330
} | 107 |
// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:dap/dap.dart' as dap;
import '../../service/vm_service_wrapper.dart';
import '../primitives/trees.dart';
class DapObjectNode extends TreeNode<DapObjectNode> {
DapObjectNode({required this.variable, required VmServiceWrapper service})
: _service = service;
final dap.Variable variable;
final VmServiceWrapper _service;
Future<void> fetchChildren() async {
// If we have already fetched children for this variable,
// then do nothing instead of re-fetching.
if (this.children.isNotEmpty) return;
// If `variablesReference` is > 0, then the variable is
// structured, meaning it has children.
final hasChildren = variable.variablesReference > 0;
if (!hasChildren) return;
final variablesResponse = await _service.dapVariablesRequest(
dap.VariablesArguments(
variablesReference: variable.variablesReference,
),
);
final children = variablesResponse?.variables ?? [];
for (final child in children) {
addChild(
DapObjectNode(
variable: child,
service: _service,
),
);
}
}
@override
DapObjectNode shallowCopy() {
throw UnimplementedError(
'This method is not implemented. Implement if you '
'need to call `shallowCopy` on an instance of this class.',
);
}
}
| devtools/packages/devtools_app/lib/src/shared/diagnostics/dap_object_node.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/diagnostics/dap_object_node.dart",
"repo_id": "devtools",
"token_count": 526
} | 108 |
// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:devtools_app_shared/ui.dart';
import 'package:flutter/material.dart';
class DirectoryPicker extends StatefulWidget {
const DirectoryPicker({
required this.onDirectoryPicked,
this.enabled = true,
super.key,
});
final bool enabled;
final ValueChanged<String> onDirectoryPicked;
@override
State<DirectoryPicker> createState() => _DirectoryPickerState();
}
class _DirectoryPickerState extends State<DirectoryPicker> {
final TextEditingController controller = TextEditingController();
@override
void dispose() {
controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Spacer(),
Flexible(
flex: 4,
fit: FlexFit.tight,
child: RoundedOutlinedBorder(
child: Container(
height: defaultTextFieldHeight,
padding: const EdgeInsets.symmetric(horizontal: defaultSpacing),
child: TextField(
controller: controller,
enabled: widget.enabled,
onSubmitted: (String path) {
widget.onDirectoryPicked(path.trim());
},
decoration: const InputDecoration(
isDense: true,
hintText: 'Enter path to a Flutter project here',
),
style: Theme.of(context).regularTextStyle,
textAlign: TextAlign.left,
),
),
),
),
const Spacer(),
],
);
}
}
| devtools/packages/devtools_app/lib/src/shared/directory_picker.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/directory_picker.dart",
"repo_id": "devtools",
"token_count": 782
} | 109 |
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'dart:convert';
import 'package:flutter/foundation.dart';
import 'package:logging/logging.dart';
import 'package:mime/mime.dart';
import 'package:vm_service/vm_service.dart';
import '../../screens/network/network_model.dart';
import '../globals.dart';
import '../primitives/utils.dart';
import 'http.dart';
final _log = Logger('http_request_data');
/// Used to represent an instant event emitted during an HTTP request.
class DartIOHttpInstantEvent {
DartIOHttpInstantEvent._(this._event);
final HttpProfileRequestEvent _event;
String get name => _event.event;
/// The time the instant event was recorded.
DateTime get timestamp => _event.timestamp;
/// The amount of time since the last instant event completed.
TimeRange? get timeRange => _timeRange;
// This is set from within HttpRequestData.
TimeRange? _timeRange;
}
/// An abstraction of an HTTP request made through dart:io.
class DartIOHttpRequestData extends NetworkRequest {
DartIOHttpRequestData(
this._request, {
bool requestFullDataFromVmService = true,
}) {
if (requestFullDataFromVmService && _request.isResponseComplete) {
unawaited(getFullRequestData());
}
}
static const _connectionInfoKey = 'connectionInfo';
static const _contentTypeKey = 'content-type';
static const _localPortKey = 'localPort';
HttpProfileRequestRef _request;
bool isFetchingFullData = false;
Future<void> getFullRequestData() async {
try {
if (isFetchingFullData) return; // We are already fetching
isFetchingFullData = true;
final updated = await serviceConnection.serviceManager.service!
.getHttpProfileRequestWrapper(
_request.isolateId,
_request.id.toString(),
);
_request = updated;
final fullRequest = _request as HttpProfileRequest;
_responseBody = utf8.decode(fullRequest.responseBody!);
_requestBody = utf8.decode(fullRequest.requestBody!);
notifyListeners();
} finally {
isFetchingFullData = false;
}
}
static List<Cookie> _parseCookies(List<String>? cookies) {
if (cookies == null) return [];
return cookies.map((cookie) => Cookie.fromSetCookieValue(cookie)).toList();
}
@override
String get id => _request.id;
bool get _hasError => _request.request?.hasError ?? false;
DateTime? get _endTime =>
_hasError ? _request.endTime : _request.response?.endTime;
@override
Duration? get duration {
if (inProgress || !isValid) return null;
// Timestamps are in microseconds
return _endTime!.difference(_request.startTime);
}
/// Whether the request is safe to display in the UI.
///
/// The dart:io HTTP profiling service extensions should never return invalid
/// requests.
bool get isValid => true;
/// A map of general information associated with an HTTP request.
Map<String, dynamic> get general {
return {
'method': _request.method,
'uri': _request.uri.toString(),
if (!didFail) ...{
'connectionInfo': _request.request?.connectionInfo,
'contentLength': _request.request?.contentLength,
},
if (_request.response != null) ...{
'compressionState': _request.response!.compressionState,
'isRedirect': _request.response!.isRedirect,
'persistentConnection': _request.response!.persistentConnection,
'reasonPhrase': _request.response!.reasonPhrase,
'redirects': _request.response!.redirects,
'statusCode': _request.response!.statusCode,
},
};
}
@override
String? get contentType {
final headers = responseHeaders;
if (headers == null || headers[_contentTypeKey] == null) {
return null;
}
return headers[_contentTypeKey].toString();
}
@override
String get type {
var mime = contentType;
if (mime == null) return 'http';
// Extract the MIME from `contentType`.
// Example: "[text/html; charset-UTF-8]" --> "text/html"
mime = mime.split(';').first;
if (mime.startsWith('[')) {
mime = mime.substring(1);
}
if (mime.endsWith(']')) {
mime = mime.substring(0, mime.length - 1);
}
return _extensionFromMime(mime);
}
/// Extracts the extension from [mime], with overrides for shortened
/// extenstions of common types (e.g., jpe -> jpeg).
String _extensionFromMime(String mime) {
final extension = extensionFromMime(mime);
if (extension == 'jpe') {
return 'jpeg';
}
if (extension == 'htm') {
return 'html';
}
// text/plain -> conf
if (extension == 'conf') {
return 'txt';
}
return extension;
}
@override
String get method => _request.method;
@override
int? get port {
final Map<String, dynamic>? connectionInfo = general[_connectionInfoKey];
return connectionInfo != null ? connectionInfo[_localPortKey] : null;
}
/// True if the HTTP request hasn't completed yet, determined by the lack of
/// an end time in the response data.
@override
bool get inProgress =>
_hasError ? !_request.isRequestComplete : !_request.isResponseComplete;
/// All instant events logged to the timeline for this HTTP request.
List<DartIOHttpInstantEvent> get instantEvents {
if (_instantEvents == null) {
_instantEvents =
_request.events.map((e) => DartIOHttpInstantEvent._(e)).toList();
_recalculateInstantEventTimes();
}
return _instantEvents!;
}
List<DartIOHttpInstantEvent>? _instantEvents;
/// True if either the request or response contained cookies.
bool get hasCookies =>
requestCookies.isNotEmpty || responseCookies.isNotEmpty;
/// A list of all cookies contained within the request headers.
List<Cookie> get requestCookies => _hasError
? []
: DartIOHttpRequestData._parseCookies(_request.request?.cookies);
/// A list of all cookies contained within the response headers.
List<Cookie> get responseCookies =>
DartIOHttpRequestData._parseCookies(_request.response?.cookies);
/// The request headers for the HTTP request.
Map<String, dynamic>? get requestHeaders =>
_hasError ? null : _request.request?.headers;
/// The response headers for the HTTP request.
Map<String, dynamic>? get responseHeaders => _request.response?.headers;
@override
bool get didFail {
if (status == null) return false;
if (status == 'Error') return true;
try {
final code = int.parse(status!);
// Status codes 400-499 are client errors and 500-599 are server errors.
if (code >= 400) {
return true;
}
} on Exception catch (e, st) {
_log.shout('Could not parse HTTP request status: $status', e, st);
return true;
}
return false;
}
/// Merges the information from another [HttpRequestData] into this instance.
void merge(DartIOHttpRequestData data) {
_request = data._request;
notifyListeners();
}
@override
DateTime? get endTimestamp => _endTime;
@override
DateTime get startTimestamp => _request.startTime;
@override
String? get status =>
_hasError ? 'Error' : _request.response?.statusCode.toString();
@override
String get uri => _request.uri.toString();
String? get responseBody {
if (_request is! HttpProfileRequest) {
return null;
}
final fullRequest = _request as HttpProfileRequest;
try {
if (!_request.isResponseComplete) return null;
if (_responseBody != null) return _responseBody;
_responseBody = utf8.decode(fullRequest.responseBody!);
return _responseBody;
} on FormatException {
return '<binary data>';
}
}
Uint8List? get encodedResponse {
if (!_request.isResponseComplete) return null;
final fullRequest = _request as HttpProfileRequest;
return fullRequest.responseBody;
}
String? _responseBody;
String? get requestBody {
if (_request is! HttpProfileRequest) {
return null;
}
final fullRequest = _request as HttpProfileRequest;
try {
if (!_request.isResponseComplete) return null;
final acceptedMethods = {'POST', 'PUT', 'PATCH'};
if (!acceptedMethods.contains(_request.method)) return null;
if (_requestBody != null) return _requestBody;
if (fullRequest.requestBody == null) return null;
_requestBody = utf8.decode(fullRequest.requestBody!);
return _requestBody;
} on FormatException {
return '<binary data>';
}
}
String? _requestBody;
void _recalculateInstantEventTimes() {
DateTime lastTime = _request.startTime;
for (final instant in instantEvents) {
final instantTime = instant.timestamp;
instant._timeRange = TimeRange()
..start = Duration(microseconds: lastTime.microsecondsSinceEpoch)
..end = Duration(microseconds: instantTime.microsecondsSinceEpoch);
lastTime = instantTime;
}
}
@override
bool operator ==(Object other) {
return other is DartIOHttpRequestData && id == other.id && super == other;
}
@override
int get hashCode => Object.hash(
id,
method,
uri,
contentType,
type,
port,
startTimestamp,
);
}
| devtools/packages/devtools_app/lib/src/shared/http/http_request_data.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/http/http_request_data.dart",
"repo_id": "devtools",
"token_count": 3270
} | 110 |
// Copyright 2024 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
part of 'preferences.dart';
class MemoryPreferencesController extends DisposableController
with AutoDisposeControllerMixin {
/// If true, android chart will be shown in addition to
/// dart chart.
final androidCollectionEnabled = ValueNotifier<bool>(false);
static const _androidCollectionEnabledStorageId =
'memory.androidCollectionEnabled';
/// If false, mamory chart will be collapsed.
final showChart = ValueNotifier<bool>(true);
static const _showChartStorageId = 'memory.showChart';
/// Number of references to request from vm service,
/// when browsing references in console.
final refLimitTitle = 'Limit for number of requested live instances.';
final refLimit = ValueNotifier<int>(_defaultRefLimit);
static const _defaultRefLimit = 100000;
static const _refLimitStorageId = 'memory.refLimit';
Future<void> init() async {
addAutoDisposeListener(
androidCollectionEnabled,
() {
storage.setValue(
_androidCollectionEnabledStorageId,
androidCollectionEnabled.value.toString(),
);
if (androidCollectionEnabled.value) {
ga.select(
gac.memory,
gac.MemoryEvent.chartAndroid,
);
}
},
);
androidCollectionEnabled.value = await boolValueFromStorage(
_androidCollectionEnabledStorageId,
defaultsTo: false,
);
addAutoDisposeListener(
showChart,
() {
storage.setValue(
_showChartStorageId,
showChart.value.toString(),
);
ga.select(
gac.memory,
showChart.value
? gac.MemoryEvent.showChart
: gac.MemoryEvent.hideChart,
);
},
);
showChart.value = await boolValueFromStorage(
_showChartStorageId,
defaultsTo: true,
);
addAutoDisposeListener(
refLimit,
() {
storage.setValue(
_refLimitStorageId,
refLimit.value.toString(),
);
ga.select(
gac.memory,
gac.MemoryEvent.browseRefLimit,
);
},
);
refLimit.value =
int.tryParse(await storage.getValue(_refLimitStorageId) ?? '') ??
_defaultRefLimit;
}
}
| devtools/packages/devtools_app/lib/src/shared/preferences/_memory_preferences.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/preferences/_memory_preferences.dart",
"repo_id": "devtools",
"token_count": 953
} | 111 |
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
/// An event type for use with [MessageBus].
class BusEvent {
BusEvent(this.type, {this.data});
final String type;
final Object? data;
@override
String toString() => type;
}
/// A message bus class. Clients can listen for classes of events, optionally
/// filtered by a string type. This can be used to decouple events sources and
/// event listeners.
class MessageBus {
MessageBus() {
_controller = StreamController.broadcast();
}
late StreamController<BusEvent> _controller;
/// Listen for events on the event bus. Clients can pass in an optional [type],
/// which filters the events to only those specific ones.
Stream<BusEvent> onEvent({String? type}) {
return type == null
? _controller.stream
: _controller.stream.where((BusEvent event) => event.type == type);
}
/// Add an event to the event bus.
void addEvent(BusEvent event) {
_controller.add(event);
}
/// Close (destroy) this [MessageBus]. This is generally not used outside of a
/// testing context. All stream listeners will be closed and the bus will not
/// fire any more events.
void close() {
unawaited(_controller.close());
}
}
| devtools/packages/devtools_app/lib/src/shared/primitives/message_bus.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/primitives/message_bus.dart",
"repo_id": "devtools",
"token_count": 395
} | 112 |
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be found
// in the LICENSE file.
part of 'server.dart';
/// Makes a request to the server to refresh the list of available extensions,
/// serve their assets on the server, and return the list of available
/// extensions here.
Future<List<DevToolsExtensionConfig>> refreshAvailableExtensions(
Uri appRoot,
) async {
_log.fine('refreshAvailableExtensions for ${appRoot.toString()}');
if (isDevToolsServerAvailable) {
final uri = Uri(
path: ExtensionsApi.apiServeAvailableExtensions,
queryParameters: {
ExtensionsApi.extensionRootPathPropertyName: appRoot.toString(),
},
);
final resp = await request(uri.toString());
if (resp?.statusOk ?? false) {
final parsedResult = json.decode(resp!.body) as Map;
final extensionsAsJson =
(parsedResult[ExtensionsApi.extensionsResultPropertyName]!
as List<Object?>)
.nonNulls
.cast<Map<String, Object?>>();
final logs = (parsedResult['logs'] as List?)?.cast<String>() ?? [];
for (final log in logs) {
_log.fine('[from devtools_server] $log');
}
final warningMessage =
parsedResult[ExtensionsApi.extensionsResultWarningPropertyName];
if (warningMessage != null) {
_log.warning(warningMessage);
}
_log.fine(
'extensions returned from the server: ${extensionsAsJson.toString()}',
);
return extensionsAsJson
.map((p) => DevToolsExtensionConfig.parse(p))
.toList();
} else {
logWarning(resp, ExtensionsApi.apiServeAvailableExtensions);
return [];
}
} else if (debugDevToolsExtensions) {
return debugHandleRefreshAvailableExtensions(appRoot);
}
return [];
}
/// Makes a request to the server to look up the enabled state for a
/// DevTools extension, and optionally to set the enabled state (when [enable]
/// is non-null).
///
/// If [enable] is specified, the server will first set the enabled state
/// to the value set forth by [enable] and then return the value that is saved
/// to disk.
Future<ExtensionEnabledState> extensionEnabledState({
required Uri appRoot,
required String extensionName,
bool? enable,
}) async {
_log.fine(
'${enable != null ? 'setting' : 'getting'} extensionEnabledState for $extensionName',
);
if (isDevToolsServerAvailable) {
final uri = Uri(
path: ExtensionsApi.apiExtensionEnabledState,
queryParameters: {
ExtensionsApi.extensionRootPathPropertyName: appRoot.toString(),
ExtensionsApi.extensionNamePropertyName: extensionName,
if (enable != null)
ExtensionsApi.enabledStatePropertyName: enable.toString(),
},
);
final resp = await request(uri.toString());
if (resp?.statusOk ?? false) {
final parsedResult = json.decode(resp!.body);
final state = ExtensionEnabledState.from(parsedResult);
_log.fine('returning state for $extensionName: $state');
return state;
} else {
logWarning(resp, ExtensionsApi.apiExtensionEnabledState);
}
} else if (debugDevToolsExtensions) {
return debugHandleExtensionEnabledState(
appRoot: appRoot,
extensionName: extensionName,
enable: enable,
);
}
return ExtensionEnabledState.error;
}
| devtools/packages/devtools_app/lib/src/shared/server/_extensions_api.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/server/_extensions_api.dart",
"repo_id": "devtools",
"token_count": 1220
} | 113 |
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart' hide Stack;
import 'collapsible_mixin.dart';
import 'primitives/trees.dart';
double get defaultTreeViewRowHeight => scaleByFontFactor(20.0);
class TreeView<T extends TreeNode<T>> extends StatefulWidget {
const TreeView({
super.key,
required this.dataRootsListenable,
required this.dataDisplayProvider,
this.onItemSelected,
this.onItemExpanded,
this.onTraverse,
this.emptyTreeViewBuilder,
this.scrollController,
this.includeScrollbar = false,
this.isSelectable = true,
});
final ValueListenable<List<T>> dataRootsListenable;
final Widget Function(T, VoidCallback) dataDisplayProvider;
/// Invoked when a tree node is selected. If [onItemExpanded] is not
/// provided, this method will also be called when the expand button is
/// tapped.
final FutureOr<void> Function(T)? onItemSelected;
/// If provided, this method will be called when the expand button is tapped.
/// Otherwise, [onItemSelected] will be invoked, if provided.
final FutureOr<void> Function(T)? onItemExpanded;
/// Called on traversal of child node during [buildFlatList].
final void Function(T)? onTraverse;
/// Builds a widget representing the empty tree. If [emptyTreeViewBuilder]
/// is not provided, then an empty [SizedBox] will be built.
final Widget Function()? emptyTreeViewBuilder;
final ScrollController? scrollController;
final bool includeScrollbar;
final bool isSelectable;
@override
State<TreeView<T>> createState() => _TreeViewState<T>();
}
class _TreeViewState<T extends TreeNode<T>> extends State<TreeView<T>>
with TreeMixin<T>, AutoDisposeMixin {
@override
void initState() {
super.initState();
addAutoDisposeListener(widget.dataRootsListenable, _updateTreeView);
_updateTreeView();
}
void _updateTreeView() {
dataRoots = List.of(widget.dataRootsListenable.value);
_updateItems();
}
@override
Widget build(BuildContext context) {
if (dataFlatList.isEmpty) return _emptyTreeViewBuilder();
final content = SizedBox(
height: dataFlatList.length * defaultTreeViewRowHeight,
child: _maybeWrapInSelectionArea(
ListView.builder(
itemCount: dataFlatList.length,
itemExtent: defaultTreeViewRowHeight,
physics: const ClampingScrollPhysics(),
controller: widget.scrollController,
itemBuilder: (context, index) {
final T item = dataFlatList[index];
return _TreeViewItem<T>(
item,
buildDisplay: (onPressed) =>
widget.dataDisplayProvider(item, onPressed),
onItemSelected: _onItemSelected,
onItemExpanded: _onItemExpanded,
);
},
),
),
);
if (widget.includeScrollbar) {
return Scrollbar(
thumbVisibility: true,
controller: widget.scrollController,
child: content,
);
}
return content;
}
Widget _emptyTreeViewBuilder() {
if (widget.emptyTreeViewBuilder != null) {
return widget.emptyTreeViewBuilder!();
}
return const SizedBox();
}
Widget _maybeWrapInSelectionArea(Widget tree) {
if (widget.isSelectable) {
return SelectionArea(child: tree);
}
return tree;
}
// TODO(kenz): animate expansions and collapses.
void _onItemSelected(T item) async {
// Order of execution matters for the below calls.
if (widget.onItemExpanded == null && item.isExpandable) {
item.toggleExpansion();
}
if (widget.onItemSelected != null) {
await widget.onItemSelected!(item);
}
_updateItems();
}
void _onItemExpanded(T item) async {
if (item.isExpandable) {
item.toggleExpansion();
}
if (widget.onItemExpanded != null) {
await widget.onItemExpanded!(item);
} else if (widget.onItemSelected != null) {
await widget.onItemSelected!(item);
}
_updateItems();
}
void _updateItems() {
setState(() {
dataFlatList = buildFlatList(
dataRoots,
onTraverse: widget.onTraverse,
);
});
}
}
class _TreeViewItem<T extends TreeNode<T>> extends StatefulWidget {
const _TreeViewItem(
this.data, {
required this.buildDisplay,
required this.onItemExpanded,
required this.onItemSelected,
});
final T data;
final Widget Function(VoidCallback onPressed) buildDisplay;
final void Function(T) onItemSelected;
final void Function(T) onItemExpanded;
@override
_TreeViewItemState<T> createState() => _TreeViewItemState<T>();
}
class _TreeViewItemState<T extends TreeNode<T>> extends State<_TreeViewItem<T>>
with TickerProviderStateMixin, CollapsibleAnimationMixin {
@override
Widget build(BuildContext context) {
return Container(
margin: EdgeInsets.only(left: nodeIndent(widget.data)),
color: widget.data.isSelected
? Theme.of(context).colorScheme.selectedRowBackgroundColor
: null,
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
widget.data.isExpandable
? InkWell(
onTap: _onExpanded,
child: RotationTransition(
turns: expandArrowAnimation,
child: Icon(
Icons.keyboard_arrow_down,
size: defaultIconSize,
),
),
)
: SizedBox(width: defaultIconSize),
Expanded(child: widget.buildDisplay(_onSelected)),
],
),
);
}
@override
bool get isExpanded => widget.data.isExpanded;
@override
void onExpandChanged(bool expanded) {}
@override
bool shouldShow() => widget.data.shouldShow();
double nodeIndent(T dataObject) {
return dataObject.level * defaultSpacing;
}
void _onExpanded() {
widget.onItemExpanded(widget.data);
setExpanded(widget.data.isExpanded);
}
void _onSelected() {
widget.onItemSelected(widget.data);
setExpanded(widget.data.isExpanded);
}
}
mixin TreeMixin<T extends TreeNode<T>> {
late List<T> dataRoots;
late List<T> dataFlatList;
}
| devtools/packages/devtools_app/lib/src/shared/tree.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/tree.dart",
"repo_id": "devtools",
"token_count": 2539
} | 114 |
// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// This class defines the API exposed by the Dart/Flutter extensions in VS
/// Code (and must match the implementation there).
///
/// All changes to this file should be backwards-compatible and use
/// [VsCodeCapabilities] to advertise which capabilities are available and
/// handle any changes in behaviour.
abstract interface class VsCodeApi {
/// The capabilities of the instance of VS Code / Dart VS Code extension that
/// we are connected to.
///
/// All API calls should be guarded by checks of capabilities because the API
/// may change over time.
VsCodeCapabilities get capabilities;
/// Informs the VS Code extension we are initialized, allowing it to send
/// initial events to all streams with an initial set of data.
Future<void> initialize();
/// A stream of events for whenever the set of devices (or selected device)
/// change in VS Code.
///
/// An event with initial devices is sent after [initialize] is called.
Stream<VsCodeDevicesEvent> get devicesChanged;
/// A stream of events for whenever the set of debug sessions change or are
/// updated in VS Code.
///
/// An event with initial sessions is sent after [initialize] is called.
Stream<VsCodeDebugSessionsEvent> get debugSessionsChanged;
/// Executes a VS Code command.
///
/// Commands can be native VS Code commands or commands registered by the
/// Dart/Flutter extensions.
///
/// Which commands are available is not part of the API contract so callers
/// should take care when calling APIs that might evolve over time.
Future<Object?> executeCommand(String command, [List<Object?>? arguments]);
/// Changes the current Flutter device.
///
/// The selected device is the same one shown in the status bar in VS Code.
/// Calling this API will update the device for the whole VS Code extension.
Future<bool> selectDevice(String id);
/// Enables the selected platform type.
///
/// Calling this method may cause a UI prompt in the editor to ask the user to
/// confirm they'd like to run `flutter create` to create the required files
/// for the project to support this platform type.
///
/// This method has no capability because it is only (and always) valid to
/// call if some `unsupportedDevices` were provided in a device event.
Future<bool> enablePlatformType(String platformType);
/// Opens a specific DevTools [page] for the debug session with ID
/// [debugSessionId].
///
/// Depending on user settings, this may open embedded (the default) or in an
/// external browser window.
Future<void> openDevToolsPage(
String debugSessionId, {
String? page,
bool? forceExternal,
});
/// Sends a Hot Reload request to the debug session with ID [debugSessionId].
Future<void> hotReload(String debugSessionId);
/// Sends a Hot Restart request to the debug session with ID [debugSessionId].
Future<void> hotRestart(String debugSessionId);
static const jsonApiName = 'vsCode';
static const jsonInitializeMethod = 'initialize';
static const jsonExecuteCommandMethod = 'executeCommand';
static const jsonSelectDeviceMethod = 'selectDevice';
static const jsonOpenDevToolsPageMethod = 'openDevToolsPage';
static const jsonHotReloadMethod = 'hotReload';
static const jsonHotRestartMethod = 'hotRestart';
static const jsonEnablePlatformTypeMethod = 'enablePlatformType';
static const jsonDevicesChangedEvent = 'devicesChanged';
static const jsonDebugSessionsChangedEvent = 'debugSessionsChanged';
static const jsonCommandParameter = 'command';
static const jsonArgumentsParameter = 'arguments';
static const jsonIdParameter = 'id';
static const jsonPageParameter = 'page';
static const jsonForceExternalParameter = 'forceExternal';
static const jsonDebugSessionIdParameter = 'debugSessionId';
static const jsonPlatformTypeParameter = 'platformType';
}
/// This class defines a device exposed by the Dart/Flutter extensions in VS
/// Code (and must match the implementation there).
///
/// All changes to this file should be backwards-compatible and use
/// [VsCodeCapabilities] to advertise which capabilities are available and
/// handle any changes in behaviour.
abstract interface class VsCodeDevice {
String get id;
String get name;
String? get category;
bool get emulator;
String? get emulatorId;
bool get ephemeral;
String get platform;
String? get platformType;
static const jsonIdField = 'id';
static const jsonNameField = 'name';
static const jsonCategoryField = 'category';
static const jsonEmulatorField = 'emulator';
static const jsonEmulatorIdField = 'emulatorId';
static const jsonEphemeralField = 'ephemeral';
static const jsonPlatformField = 'platform';
static const jsonPlatformTypeField = 'platformType';
}
/// This class defines a debug session exposed by the Dart/Flutter extensions in
/// VS Code (and must match the implementation there).
///
/// All changes to this file should be backwards-compatible and use
/// [VsCodeCapabilities] to advertise which capabilities are available and
/// handle any changes in behaviour.
abstract interface class VsCodeDebugSession {
String get id;
String get name;
String? get vmServiceUri;
/// The mode the app is running in.
///
/// These values are defined by Flutter and at the time of writing can include
/// 'debug', 'profile', 'release' and 'jit_release'.
///
/// This value may be unavailable (`null`) for Dart/Test sessions or those
/// that have not fully started yet.
String? get flutterMode;
/// The ID of the device the Flutter app is running on, if available.
String? get flutterDeviceId;
/// The type of debugger session. If available, this is usually one of:
///
/// - Dart (dart run)
/// - DartTest (dart test)
/// - Flutter (flutter run)
/// - FlutterTest (flutter test)
/// - Web (webdev serve)
/// - WebTest (webdev test)
String? get debuggerType;
/// The full path to the root of this project (the folder that contains the
/// `pubspec.yaml`).
///
/// This path might not always be available, for example:
///
/// - When the version of Dart-Code is from before this field was added
/// - When a debug session was an attach and we didn't know the source
/// - When the program being run is a lose file without any pubspec
String? get projectRootPath;
static const jsonIdField = 'id';
static const jsonNameField = 'name';
static const jsonVmServiceUriField = 'vmServiceUri';
static const jsonFlutterModeField = 'flutterMode';
static const jsonFlutterDeviceIdField = 'flutterDeviceId';
static const jsonDebuggerTypeField = 'debuggerType';
static const jsonProjectRootPathField = 'projectRootPath';
}
/// This class defines a device event sent by the Dart/Flutter extensions in VS
/// Code (and must match the implementation there).
///
/// All changes to this file should be backwards-compatible and use
/// [VsCodeCapabilities] to advertise which capabilities are available and
/// handle any changes in behaviour.
abstract interface class VsCodeDevicesEvent {
/// The ID of the selected Flutter device in VS Code.
///
/// This device can be changed with the `selectDevice` method but can also
/// be changed by the VS Code extension (which will emit a new event).
String? get selectedDeviceId;
/// A list of the devices that are available to select.
List<VsCodeDevice> get devices;
/// A list of the devices that are unavailable to select because the platform
/// is not enabled.
///
/// A devices platform type can be enabled by calling the `enablePlatformType`
/// method.
///
/// This field is nullable because it was not in the initial sidebar API so
/// older versions of VS Code might not provide it.
List<VsCodeDevice>? get unsupportedDevices;
static const jsonSelectedDeviceIdField = 'selectedDeviceId';
static const jsonDevicesField = 'devices';
static const jsonUnsupportedDevicesField = 'unsupportedDevices';
}
/// This class defines a debug session event sent by the Dart/Flutter extensions
/// in VS Code (and must match the implementation there).
///
/// All changes to this file should be backwards-compatible and use
/// [VsCodeCapabilities] to advertise which capabilities are available and
/// handle any changes in behaviour.
abstract interface class VsCodeDebugSessionsEvent {
/// A list of debug sessions that are currently active in VS Code.
List<VsCodeDebugSession> get sessions;
static const jsonSessionsField = 'sessions';
}
/// This class defines the capabilities provided by the current version of the
/// Dart/Flutter extensions in VS Code.
///
/// All changes to this file should be backwards-compatible and use
/// [VsCodeCapabilities] to advertise which capabilities are available and
/// handle any changes in behaviour.
abstract interface class VsCodeCapabilities {
/// Whether the `executeCommand` method is available to call to execute VS
/// Code commands.
bool get executeCommand;
/// Whether the `selectDevice` method is available to call to change the
/// selected Flutter device.
bool get selectDevice;
/// Whether the `openDevToolsPage` method is available call to open a specific
/// DevTools page.
bool get openDevToolsPage;
/// Whether the `openDevToolsPage` method can be called without a `page`
/// argument and with a 'forceExternal` flag to open DevTools in a browser
/// regardless of user settings.
bool get openDevToolsExternally;
/// Whether the `hotReload` method is available call to hot reload a specific
/// debug session.
bool get hotReload;
/// Whether the `hotRestart` method is available call to restart a specific
/// debug session.
bool get hotRestart;
static const jsonExecuteCommandField = 'executeCommand';
static const jsonSelectDeviceField = 'selectDevice';
static const openDevToolsPageField = 'openDevToolsPage';
static const openDevToolsExternallyField = 'openDevToolsExternally';
static const hotReloadField = 'hotReload';
static const hotRestartField = 'hotRestart';
}
| devtools/packages/devtools_app/lib/src/standalone_ui/api/vs_code_api.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/standalone_ui/api/vs_code_api.dart",
"repo_id": "devtools",
"token_count": 2632
} | 115 |
// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:devtools_app/devtools_app.dart';
import 'package:devtools_app/src/screens/profiler/cpu_profile_transformer.dart';
import 'package:devtools_app/src/screens/profiler/panes/method_table/method_table.dart';
import 'package:devtools_app/src/screens/profiler/panes/method_table/method_table_controller.dart';
import 'package:devtools_app/src/screens/profiler/panes/method_table/method_table_model.dart';
import 'package:devtools_app/src/shared/table/table.dart';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:devtools_test/devtools_test.dart';
import 'package:devtools_test/helpers.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:mockito/mockito.dart';
import 'package:vm_service/vm_service.dart';
import '../../test_infra/matchers/_golden_matcher_io.dart';
import '../../test_infra/test_data/cpu_profiler/simple_profile_2.dart';
import '../../test_infra/utils/test_utils.dart';
void main() {
late MethodTableController methodTableController;
setUp(() async {
setCharacterWidthForTables();
setGlobal(
ServiceConnectionManager,
createMockServiceConnectionWithDefaults(),
);
setGlobal(IdeTheme, IdeTheme());
setGlobal(OfflineModeController, OfflineModeController());
final mockScriptManager = MockScriptManager();
when(mockScriptManager.sortedScripts).thenReturn(
ValueNotifier<List<ScriptRef>>([]),
);
when(mockScriptManager.scriptRefForUri(any)).thenReturn(
ScriptRef(
uri: 'package:test/script.dart',
id: 'script.dart',
),
);
setGlobal(ScriptManager, mockScriptManager);
final data = CpuProfileData.parse(simpleCpuProfile2);
await CpuProfileTransformer().processData(data, processId: 'test');
methodTableController = MethodTableController(
dataNotifier: FixedValueListenable<CpuProfileData>(data),
)..createMethodTableGraph(data);
});
const windowSize = Size(2000.0, 1000.0);
Future<void> pumpMethodTable(WidgetTester tester) async {
await tester.pumpWidget(
wrap(
CpuMethodTable(
methodTableController: methodTableController,
),
),
);
await tester.pumpAndSettle();
expect(find.byType(CpuMethodTable), findsOneWidget);
}
group('$CpuMethodTable', () {
testWidgetsWithWindowSize(
'loads methods with no selection',
windowSize,
(WidgetTester tester) async {
await pumpMethodTable(tester);
expect(
find.byType(SearchableFlatTable<MethodTableGraphNode>),
findsOneWidget,
);
expect(find.text('Method'), findsOneWidget);
expect(find.text('Total %'), findsOneWidget);
expect(find.text('Self %'), findsOneWidget);
expect(find.text('Caller %'), findsNothing);
expect(find.text('Callee %'), findsNothing);
expect(
find.text('Select a method to view its call graph.'),
findsOneWidget,
);
await expectLater(
find.byType(CpuMethodTable),
matchesDevToolsGolden(
'../../test_infra/goldens/cpu_profiler/method_table_no_selection.png',
),
);
},
);
testWidgetsWithWindowSize(
'loads methods with selection',
windowSize,
(WidgetTester tester) async {
final interestingNode = methodTableController.methods.value.first;
expect(interestingNode.name, 'A');
expect(interestingNode.predecessors, isNotEmpty);
expect(interestingNode.successors, isNotEmpty);
methodTableController.selectedNode.value = interestingNode;
await pumpMethodTable(tester);
expect(
find.byType(SearchableFlatTable<MethodTableGraphNode>),
findsOneWidget,
);
expect(find.byType(FlatTable<MethodTableGraphNode>), findsNWidgets(2));
expect(find.text('Method'), findsNWidgets(3));
expect(find.text('Total %'), findsOneWidget);
expect(find.text('Self %'), findsOneWidget);
expect(find.text('Caller %'), findsOneWidget);
expect(find.text('Callee %'), findsOneWidget);
expect(
find.text('Select a method to view its call graph.'),
findsNothing,
);
await expectLater(
find.byType(CpuMethodTable),
matchesDevToolsGolden(
'../../test_infra/goldens/cpu_profiler/method_table_with_selection.png',
),
);
methodTableController.selectedNode.value =
methodTableController.methods.value.last;
await tester.pumpAndSettle();
await expectLater(
find.byType(CpuMethodTable),
matchesDevToolsGolden(
'../../test_infra/goldens/cpu_profiler/method_table_with_selection_2.png',
),
);
},
);
});
}
| devtools/packages/devtools_app/test/cpu_profiler/method_table/method_table_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/cpu_profiler/method_table/method_table_test.dart",
"repo_id": "devtools",
"token_count": 2024
} | 116 |
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:codicon/codicon.dart';
import 'package:devtools_app/devtools_app.dart';
import 'package:devtools_app/src/screens/debugger/codeview.dart';
import 'package:devtools_app/src/screens/debugger/debugger_model.dart';
import 'package:devtools_app/src/shared/diagnostics/primitives/source_location.dart';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:devtools_test/devtools_test.dart';
import 'package:devtools_test/helpers.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:mockito/mockito.dart';
import 'package:vm_service/vm_service.dart';
import '../test_infra/utils/debugger_utils.dart';
import '../test_infra/utils/test_utils.dart';
void main() {
const windowSize = Size(2500.0, 1200.0);
late FakeServiceConnectionManager fakeServiceConnection;
late MockScriptManager scriptManager;
late MockDebuggerController debuggerController;
setUp(() {
fakeServiceConnection = FakeServiceConnectionManager();
scriptManager = MockScriptManager();
mockConnectedApp(
fakeServiceConnection.serviceManager.connectedApp!,
isFlutterApp: true,
isProfileBuild: false,
isWebApp: false,
);
setGlobal(ServiceConnectionManager, fakeServiceConnection);
setGlobal(IdeTheme, IdeTheme());
setGlobal(ScriptManager, scriptManager);
setGlobal(NotificationService, NotificationService());
setGlobal(BreakpointManager, BreakpointManager());
setGlobal(
DevToolsEnvironmentParameters,
ExternalDevToolsEnvironmentParameters(),
);
setGlobal(PreferencesController, PreferencesController());
fakeServiceConnection.consoleService.ensureServiceInitialized();
when(fakeServiceConnection.errorBadgeManager.errorCountNotifier('debugger'))
.thenReturn(ValueNotifier<int>(0));
debuggerController = createMockDebuggerControllerWithDefaults();
final codeViewController = debuggerController.codeViewController;
final scriptsHistory = ScriptsHistory();
scriptsHistory.pushEntry(mockScript!);
when(codeViewController.scriptsHistory).thenReturn(scriptsHistory);
when(debuggerController.stackFramesWithLocation).thenReturn(
ValueNotifier([
_stackFrame1,
_stackFrame2,
]),
);
when(codeViewController.currentScriptRef)
.thenReturn(ValueNotifier(mockScriptRef));
when(codeViewController.currentParsedScript)
.thenReturn(ValueNotifier(mockParsedScript));
when(codeViewController.navigationInProgress).thenReturn(false);
});
Future<void> pumpDebuggerScreen(WidgetTester tester) async {
await tester.pumpWidget(
wrapWithControllers(
DebuggerScreenBody(
shownFirstScript: () => true,
setShownFirstScript: (_) {},
),
debugger: debuggerController,
),
);
}
testWidgetsWithWindowSize(
'debugger controls paused',
windowSize,
(WidgetTester tester) async {
await pumpDebuggerScreen(tester);
(serviceConnection.serviceManager.isolateManager as FakeIsolateManager)
.setMainIsolatePausedState(true);
await tester.pump();
expect(
findDebuggerButtonWithIcon(Codicons.debugPause),
findsOneWidget,
);
final pause = getWidgetFromFinder<OutlinedButton>(
findDebuggerButtonWithIcon(Codicons.debugPause),
);
expect(pause.onPressed, isNull);
expect(
findDebuggerButtonWithIcon(Codicons.debugContinue),
findsOneWidget,
);
final resume = getWidgetFromFinder<OutlinedButton>(
findDebuggerButtonWithIcon(Codicons.debugContinue),
);
expect(resume.onPressed, isNotNull);
},
);
testWidgetsWithWindowSize(
'selecting stackframe scrolls the frame location into view',
windowSize,
(WidgetTester tester) async {
final stackFrameNotifier = ValueNotifier(_stackFrame1);
when(debuggerController.selectedStackFrame)
.thenReturn(stackFrameNotifier);
await pumpDebuggerScreen(tester);
await tester.pumpAndSettle();
// The first stack frame is visible:
final firstStackFrame =
findStackFrameWithText('firstCodeRef main.dart:1');
expect(firstStackFrame, findsOneWidget);
// The second stack frame is visible:
final secondStackFrame =
findStackFrameWithText('secondCodeRef main.dart:85');
expect(secondStackFrame, findsOneWidget);
// The first stack frame's line is visible:
expect(gutterItemForLineIsVisible(_stackFrame1Line), isTrue);
// The second stack frame's line is not visible:
expect(gutterItemForLineIsVisible(_stackFrame2Line), isFalse);
// Update the selected stack frame:
stackFrameNotifier.value = _stackFrame2;
await tester.pumpAndSettle();
// The second stack frame's line is now visible:
expect(gutterItemForLineIsVisible(_stackFrame2Line), isTrue);
// The first stack frame's line is not visible:
expect(gutterItemForLineIsVisible(_stackFrame1Line), isFalse);
},
);
}
const _stackFrame1Line = 1;
final _stackFrame1 = StackFrameAndSourcePosition(
Frame(
index: 0,
code: CodeRef(
name: 'firstCodeRef',
id: 'firstCodeRef',
kind: CodeKind.kDart,
),
location: SourceLocation(
script: mockScriptRef,
),
kind: FrameKind.kRegular,
),
position: const SourcePosition(line: _stackFrame1Line, column: 1),
);
const _stackFrame2Line = 85;
final _stackFrame2 = StackFrameAndSourcePosition(
Frame(
index: 1,
code: CodeRef(
name: 'secondCodeRef',
id: 'secondCodeRef',
kind: CodeKind.kDart,
),
location: SourceLocation(
script: mockScriptRef,
),
kind: FrameKind.kRegular,
),
position: const SourcePosition(line: _stackFrame2Line, column: 1),
);
Finder findStackFrameWithText(String text) => find.byWidgetPredicate(
(Widget widget) =>
widget is RichText && widget.text.toPlainText().contains(text),
);
bool gutterItemForLineIsVisible(int lineNumber) {
final gutterItems = find.byType(GutterItem);
final firstGutterItem = getWidgetFromFinder<GutterItem>(gutterItems.first);
final lastGutterItem = getWidgetFromFinder<GutterItem>(gutterItems.last);
final lineRange =
Range(firstGutterItem.lineNumber, lastGutterItem.lineNumber);
return lineRange.contains(lineNumber);
}
| devtools/packages/devtools_app/test/debugger/debugger_screen_paused_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/debugger/debugger_screen_paused_test.dart",
"repo_id": "devtools",
"token_count": 2362
} | 117 |
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be found
// in the LICENSE file.
import 'dart:convert';
import 'package:devtools_app/devtools_app.dart';
import 'package:devtools_app/src/shared/ui/utils.dart';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:devtools_test/devtools_test.dart';
import 'package:devtools_test/helpers.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
group('DiagnosticsNodeDescription', () {
final renderObjectJson = jsonDecode(
'''
{
"properties": [
{
"description": "horizontal",
"name": "direction"
},
{
"description": "start",
"name": "mainAxisAlignment"
},
{
"description": "max",
"name": "mainAxisSize"
},
{
"description": "center",
"name": "crossAxisAlignment"
},
{
"description": "ltr",
"name": "textDirection"
},
{
"description": "down",
"name": "verticalDirection"
}
]
}
''',
);
setUp(() {
setGlobal(
DevToolsEnvironmentParameters,
ExternalDevToolsEnvironmentParameters(),
);
setGlobal(PreferencesController, PreferencesController());
setGlobal(IdeTheme, IdeTheme());
setGlobal(ServiceConnectionManager, FakeServiceConnectionManager());
});
group('hover eval', () {
final nodeJson = <String, Object?>{
'widgetRuntimeType': 'Row',
'renderObject': renderObjectJson,
'hasChildren': false,
'children': [],
};
final inspectorService = MockInspectorObjectGroupBase();
final diagnostic = RemoteDiagnosticsNode(
nodeJson,
inspectorService,
false,
null,
);
late DiagnosticsNodeDescription diagnosticsNodeDescription;
setUp(() {
preferences.inspector.setHoverEvalMode(true);
diagnosticsNodeDescription = DiagnosticsNodeDescription(
diagnostic,
);
});
testWidgets(
'can be enabled from preferences',
(WidgetTester tester) async {
await tester.pumpWidget(wrap(diagnosticsNodeDescription));
final hoverCardTooltip =
tester.widget(find.byType(HoverCardTooltip)) as HoverCardTooltip;
expect(hoverCardTooltip.enabled(), true);
},
);
testWidgets(
'can be disabled from preferences',
(WidgetTester tester) async {
preferences.inspector.setHoverEvalMode(false);
await tester.pumpWidget(wrap(diagnosticsNodeDescription));
final hoverCardTooltip =
tester.widget(find.byType(HoverCardTooltip)) as HoverCardTooltip;
expect(hoverCardTooltip.enabled(), false);
},
);
testWidgets(
'disabled when inspector service not set',
(WidgetTester tester) async {
final diagnosticWithoutService = RemoteDiagnosticsNode(
nodeJson,
null,
false,
null,
);
diagnosticsNodeDescription = DiagnosticsNodeDescription(
diagnosticWithoutService,
);
await tester.pumpWidget(wrap(diagnosticsNodeDescription));
final hoverCardTooltip =
tester.widget(find.byType(HoverCardTooltip)) as HoverCardTooltip;
expect(hoverCardTooltip.enabled(), false);
},
);
});
group('approximateNodeWidth', () {
const epsilon = 7.0;
testWidgets(
'property diagnostics node with name and description',
(WidgetTester tester) async {
final nodeJson = <String, Object?>{
'widgetRuntimeType': 'Row',
'renderObject': renderObjectJson,
'hasChildren': false,
'children': [],
'description':
'this is a showname description, which will show up after the name',
'showName': true,
'name': 'THE NAME to be shown',
};
final diagnosticWithoutService = RemoteDiagnosticsNode(
nodeJson,
null,
true,
null,
);
final diagnosticsNodeDescription = DiagnosticsNodeDescription(
diagnosticWithoutService,
);
await tester.pumpWidget(wrap(diagnosticsNodeDescription));
final approximatedWidth =
DiagnosticsNodeDescription.approximateNodeWidth(
diagnosticWithoutService,
);
final diagnosticsNodeFind = find.byType(DiagnosticsNodeDescription);
// There are many rich texts, containg the name, and description.
final allRichTexts = find
.descendant(
of: diagnosticsNodeFind,
matching: find.byType(RichText),
)
.evaluate()
.map((e) => e.widget as RichText);
final measuredWidthOfAllRichTexts = allRichTexts.fold<double>(
0,
(previousValue, richText) =>
previousValue +
calculateTextSpanWidth(
richText.text as TextSpan,
),
);
expect(
approximatedWidth,
moreOrLessEquals(measuredWidthOfAllRichTexts, epsilon: epsilon),
);
},
);
testWidgets(
'diagnostics node with icon and description',
(WidgetTester tester) async {
final nodeJson = <String, Object?>{
'widgetRuntimeType': 'Row',
'renderObject': renderObjectJson,
'hasChildren': false,
'description': 'This is the description',
'children': [],
'showName': false,
};
final diagnosticWithoutService = RemoteDiagnosticsNode(
nodeJson,
null,
false,
null,
);
final diagnosticsNodeDescription = DiagnosticsNodeDescription(
diagnosticWithoutService,
);
await tester.pumpWidget(wrap(diagnosticsNodeDescription));
final approximatedTextWidth =
DiagnosticsNodeDescription.approximateNodeWidth(
diagnosticWithoutService,
);
final diagnosticsNodeFind = find.byType(DiagnosticsNodeDescription);
// The icon is part of the clickable width, so we include it.
final measuredIconWidth = tester
.getSize(
find.descendant(
of: diagnosticsNodeFind,
matching: find.byType(AssetImageIcon),
),
)
.width;
// There is only one rich text widget, containing the description.
final richTextWidget = find
.descendant(
of: diagnosticsNodeFind,
matching: find.byType(RichText),
)
.first
.evaluate()
.first
.widget as RichText;
final measuredTextWidth =
calculateTextSpanWidth(richTextWidget.text as TextSpan);
expect(
approximatedTextWidth,
moreOrLessEquals(
measuredTextWidth + measuredIconWidth,
epsilon: epsilon,
),
);
},
);
testWidgets(
'error node with different fontSize',
(WidgetTester tester) async {
// Nodes with normal levels default to using the default fontSize, so
// using an error level node allows us to test different font sizes.
final nodeJson = <String, Object?>{
'widgetRuntimeType': 'Row',
'renderObject': renderObjectJson,
'hasChildren': false,
'children': [],
'description':
'this is a showname description, which will show up after the name',
'showName': true,
'name': 'THE NAME to be shown',
'level': 'error',
};
final diagnosticWithoutService = RemoteDiagnosticsNode(
nodeJson,
null,
false,
null,
);
//Use a textStyle that is much larger than the normal style
const textStyle = TextStyle(fontSize: 24.0, fontFamily: 'Roboto');
final diagnosticsNodeDescription = DiagnosticsNodeDescription(
diagnosticWithoutService,
style: textStyle,
);
await tester.pumpWidget(wrap(diagnosticsNodeDescription));
final approximatedWidth =
DiagnosticsNodeDescription.approximateNodeWidth(
diagnosticWithoutService,
);
final diagnosticsNodeFind = find.byType(DiagnosticsNodeDescription);
// There are many rich texts, containg the name, and description.
final allRichTexts = find
.descendant(
of: diagnosticsNodeFind,
matching: find.byType(RichText),
)
.evaluate()
.map((e) => e.widget as RichText);
final measuredWidthOfAllRichTexts =
allRichTexts.fold<double>(0, (previousValue, richText) {
final originalTextSpan = richText.text as TextSpan;
return previousValue +
calculateTextSpanWidth(
originalTextSpan,
);
});
expect(
approximatedWidth,
moreOrLessEquals(measuredWidthOfAllRichTexts, epsilon: epsilon),
);
},
);
});
});
}
| devtools/packages/devtools_app/test/inspector/diagnostics_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/inspector/diagnostics_test.dart",
"repo_id": "devtools",
"token_count": 4741
} | 118 |
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:devtools_app/src/screens/inspector/inspector_data_models.dart';
import 'package:devtools_app/src/screens/inspector/layout_explorer/ui/theme.dart';
import 'package:devtools_app/src/shared/primitives/math_utils.dart';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart';
import 'layout_explorer_test_utils.dart';
void main() {
setGlobal(IdeTheme, IdeTheme());
group('FlexLayoutProperties tests', () {
Future<FlexLayoutProperties> toFlexLayoutProperties(
Flex flex, {
required WidgetTester tester,
int subtreeDepth = 2,
double? width,
double? height,
}) async {
final wrappedWidget = SizedBox(
width: width,
height: height,
child: flex,
);
final rootNodeDiagnostics =
await widgetToLayoutExplorerRemoteDiagnosticsNode(
widget: wrappedWidget,
tester: tester,
subtreeDepth: subtreeDepth,
);
final flexDiagnostics = rootNodeDiagnostics.childrenNow.first;
return FlexLayoutProperties.fromDiagnostics(flexDiagnostics);
}
testWidgets(
'FlexLayoutProperties.fromJson creates correct value from enum',
(tester) async {
const widget = Row(
textDirection: TextDirection.ltr,
children: [SizedBox()],
);
final flexProperties =
await toFlexLayoutProperties(widget, tester: tester);
expect(flexProperties.direction, Axis.horizontal);
expect(flexProperties.mainAxisAlignment, MainAxisAlignment.start);
expect(flexProperties.mainAxisSize, MainAxisSize.max);
expect(flexProperties.crossAxisAlignment, CrossAxisAlignment.center);
expect(flexProperties.textDirection, TextDirection.ltr);
expect(flexProperties.verticalDirection, VerticalDirection.down);
expect(flexProperties.textBaseline, null);
},
);
testWidgets('startIsTopLeft should return false', (tester) async {
const columnWidget = Column(
verticalDirection: VerticalDirection.up,
children: [SizedBox()],
);
final columnProperties =
await toFlexLayoutProperties(columnWidget, tester: tester);
expect(columnProperties.startIsTopLeft, false);
const rowWidget = Row(
textDirection: TextDirection.rtl,
children: [SizedBox()],
);
final rowProperties =
await toFlexLayoutProperties(rowWidget, tester: tester);
expect(rowProperties.startIsTopLeft, false);
});
testWidgets(
'displayChildren is the same as children when start is top left',
(tester) async {
final widget = Column(
children: [
const SizedBox(),
Container(),
],
);
final properties = await toFlexLayoutProperties(widget, tester: tester);
expect(properties.startIsTopLeft, true);
expect(properties.displayChildren[0].description, 'SizedBox');
expect(properties.displayChildren[1].description, 'Container');
},
);
testWidgets(
'displayChildren is a reversed children when start is not top left',
(tester) async {
final widget = Column(
verticalDirection: VerticalDirection.up,
children: [
const SizedBox(),
Container(),
],
);
final properties = await toFlexLayoutProperties(widget, tester: tester);
expect(properties.startIsTopLeft, false);
expect(properties.displayChildren[0].description, 'Container');
expect(properties.displayChildren[1].description, 'SizedBox');
},
);
group('childrenRenderProperties tests', () {
const maxMainAxisDimension = 500.0;
double maxSizeAvailable(Axis _) => maxMainAxisDimension;
List<RenderProperties> childrenRenderProperties(
FlexLayoutProperties properties,
) =>
properties.childrenRenderProperties(
smallestRenderWidth: minRenderWidth,
largestRenderWidth: defaultMaxRenderWidth,
smallestRenderHeight: minRenderHeight,
largestRenderHeight: defaultMaxRenderHeight,
maxSizeAvailable: maxSizeAvailable,
);
final childrenWidgets = <Widget>[
const SizedBox(
width: 50.0,
),
const SizedBox(
width: 75.0,
height: 25.0,
),
];
testWidgets(
'returns correct RenderProperties with main axis not flipped when start is top left',
(tester) async {
final widget = Row(children: childrenWidgets);
final properties = await toFlexLayoutProperties(
widget,
width: maxMainAxisDimension,
tester: tester,
subtreeDepth: 3,
);
final renderProps = properties.childrenRenderProperties(
smallestRenderWidth: minRenderWidth,
largestRenderWidth: defaultMaxRenderWidth,
smallestRenderHeight: minRenderHeight,
largestRenderHeight: defaultMaxRenderHeight,
maxSizeAvailable: maxSizeAvailable,
);
expect(renderProps.length, 3);
expect(renderProps, [
RenderProperties(
axis: Axis.horizontal,
size: const Size(250, 250),
realSize: const Size(50.0, 0.0),
offset: const Offset(0.0, 125.0),
),
RenderProperties(
axis: Axis.horizontal,
size: const Size(261.5, 500),
realSize: const Size(75.0, 25.0),
offset: const Offset(250.0, 0.0),
),
RenderProperties(
axis: Axis.horizontal,
size: const Size(400, 500),
realSize: const Size(375.0, 25.0),
offset: const Offset(511.5, 0.0),
isFreeSpace: true,
),
]);
},
);
testWidgets(
'returns correct RenderProperties with main axis flipped when start is not top left',
(tester) async {
final widget = Row(
textDirection: TextDirection.rtl,
children: childrenWidgets,
);
final properties = await toFlexLayoutProperties(
widget,
tester: tester,
width: maxMainAxisDimension,
subtreeDepth: 3,
);
final renderProps = properties.childrenRenderProperties(
smallestRenderWidth: minRenderWidth,
largestRenderWidth: defaultMaxRenderWidth,
smallestRenderHeight: minRenderHeight,
largestRenderHeight: defaultMaxRenderHeight,
maxSizeAvailable: maxSizeAvailable,
);
expect(renderProps.length, 3);
expect(renderProps, [
RenderProperties(
axis: Axis.horizontal,
size: const Size(261.5, 500.0),
realSize: const Size(75.0, 25.0),
offset: const Offset(400.0, 0.0),
),
RenderProperties(
axis: Axis.horizontal,
size: const Size(250.0, 250.0),
realSize: const Size(50.0, 0.0),
offset: const Offset(661.5, 125.0),
),
RenderProperties(
axis: Axis.horizontal,
size: const Size(400, 500),
realSize: const Size(375.0, 25.0),
offset: const Offset(0.0, 0.0),
isFreeSpace: true,
),
]);
},
);
testWidgets(
'when the start is not top left, render properties should be equals to its mirrored version',
(tester) async {
Row buildWidget({
required bool flipMainAxis,
required MainAxisAlignment mainAxisAlignment,
}) =>
Row(
textDirection:
flipMainAxis ? TextDirection.rtl : TextDirection.ltr,
mainAxisAlignment: flipMainAxis
? mainAxisAlignment.reversed
: mainAxisAlignment,
children: flipMainAxis
? childrenWidgets.reversed.toList()
: childrenWidgets,
);
for (final mainAxisAlignment in MainAxisAlignment.values) {
final originalWidgetRenderProperties = childrenRenderProperties(
await toFlexLayoutProperties(
buildWidget(
flipMainAxis: false,
mainAxisAlignment: mainAxisAlignment,
),
tester: tester,
),
);
final mirroredWidgetRenderProperties = childrenRenderProperties(
await toFlexLayoutProperties(
buildWidget(
flipMainAxis: true,
mainAxisAlignment: mainAxisAlignment,
),
tester: tester,
),
);
expect(
originalWidgetRenderProperties,
mirroredWidgetRenderProperties,
);
}
},
);
});
});
group('LayoutProperties tests', () {
testWidgets('deserializes RemoteDiagnosticsNode correctly', (tester) async {
const constraints = BoxConstraints(
minWidth: 432.0,
maxWidth: 432.0,
minHeight: 56.0,
maxHeight: 56.0,
);
const size = Size(432.0, 56.0);
final widget = Container(
width: size.width,
height: size.height,
constraints: constraints,
child: const Row(
children: [SizedBox()],
),
);
final diagnosticsNode = await widgetToLayoutExplorerRemoteDiagnosticsNode(
widget: widget,
tester: tester,
subtreeDepth: 2,
);
final rowDiagnosticsNode = diagnosticsNode.childrenNow.first;
final layoutProperties = LayoutProperties(rowDiagnosticsNode);
expect(layoutProperties.size, size);
expect(layoutProperties.constraints, constraints);
expect(layoutProperties.totalChildren, 1);
});
group('describeWidthConstraints and describeHeightConstraints', () {
testWidgets('single value', (tester) async {
const width = 25.0;
const height = 56.0;
const constraints = BoxConstraints.tightFor(
width: width,
height: height,
);
final widget = ConstrainedBox(
constraints: constraints,
child: const SizedBox(),
);
final constrainedBoxDiagnosticsNode =
await widgetToLayoutExplorerRemoteDiagnosticsNode(
widget: widget,
tester: tester,
);
final sizedBoxDiagnosticsNode =
constrainedBoxDiagnosticsNode.childrenNow.first;
final layoutProperties = LayoutProperties(sizedBoxDiagnosticsNode);
expect(layoutProperties.describeHeightConstraints(), 'h=$height');
expect(layoutProperties.describeWidthConstraints(), 'w=$width');
});
testWidgets('range value', (tester) async {
const minWidth = 25.0, maxWidth = 50.0;
const minHeight = 75.0, maxHeight = 100.0;
const constraints = BoxConstraints(
minWidth: minWidth,
maxWidth: maxWidth,
minHeight: minHeight,
maxHeight: maxHeight,
);
final widget = ConstrainedBox(
constraints: constraints,
child: const SizedBox(),
);
final constrainedBoxDiagnosticsNode =
await widgetToLayoutExplorerRemoteDiagnosticsNode(
widget: widget,
tester: tester,
);
final sizedBoxDiagnosticsNode =
constrainedBoxDiagnosticsNode.childrenNow.first;
final layoutProperties = LayoutProperties(sizedBoxDiagnosticsNode);
expect(
layoutProperties.describeHeightConstraints(),
'$minHeight<=h<=$maxHeight',
);
expect(
layoutProperties.describeWidthConstraints(),
'$minWidth<=w<=$maxWidth',
);
});
testWidgets('unconstrained width', (tester) async {
final widget = Row(
children: [
Container(),
],
);
final rowDiagnosticsNode =
await widgetToLayoutExplorerRemoteDiagnosticsNode(
widget: widget,
tester: tester,
);
final containerDiagnosticsNode = rowDiagnosticsNode.childrenNow.first;
final layoutProperties = LayoutProperties(containerDiagnosticsNode);
expect(
layoutProperties.describeWidthConstraints(),
'width is unconstrained',
);
});
testWidgets('unconstrained height', (tester) async {
final widget = Column(
children: [
Container(),
],
);
final columnDiagnosticsNode =
await widgetToLayoutExplorerRemoteDiagnosticsNode(
widget: widget,
tester: tester,
);
final containerDiagnosticsNode =
columnDiagnosticsNode.childrenNow.first;
final layoutProperties = LayoutProperties(containerDiagnosticsNode);
expect(
layoutProperties.describeHeightConstraints(),
'height is unconstrained',
);
});
});
testWidgets('describeWidth and describeHeight', (tester) async {
const width = 432.5, height = 56.0;
final widget = SizedBox(
width: width,
height: height,
child: Container(),
);
final sizedBoxNode = await widgetToLayoutExplorerRemoteDiagnosticsNode(
widget: widget,
tester: tester,
);
final containerNode = sizedBoxNode.childrenNow.first;
final layoutProperties = LayoutProperties(containerNode);
expect(layoutProperties.describeHeight(), 'h=$height');
expect(layoutProperties.describeWidth(), 'w=$width');
});
});
group('computeRenderSizes', () {
test(
'scale sizes so the largestSize maps to largestRenderSize with forceToOccupyMaxSize=false',
() {
final renderSizes = computeRenderSizes(
sizes: [100.0, 200.0, 300.0],
smallestSize: 100.0,
largestSize: 300.0,
smallestRenderSize: 200.0,
largestRenderSize: 600.0,
maxSizeAvailable: 2000,
useMaxSizeAvailable: false,
);
expect(renderSizes, [200.0, 400.0, 600.0]);
expect(sum(renderSizes), lessThan(2000));
},
);
test(
'scale sizes so the items fit maxSizeAvailable with forceToOccupyMaxSize=true',
() {
final renderSizes = computeRenderSizes(
sizes: [100.0, 200.0, 300.0],
smallestSize: 100.0,
largestSize: 300.0,
smallestRenderSize: 200.0,
largestRenderSize: 600.0,
maxSizeAvailable: 2000,
);
expect(renderSizes, [200.0, 666.6666666666667, 1133.3333333333335]);
expect(sum(renderSizes) - 2000.0, lessThan(0.01));
},
);
test(
'scale sizes when the items exceeds maxSizeAvailable with forceToOccupyMaxSize=true should not change any behavior',
() {
final renderSizes = computeRenderSizes(
sizes: [100.0, 200.0, 300.0],
smallestSize: 100.0,
largestSize: 300.0,
smallestRenderSize: 300.0,
largestRenderSize: 900.0,
maxSizeAvailable: 250.0,
);
expect(renderSizes, [300.0, 600.0, 900.0]);
expect(sum(renderSizes), greaterThan(250.0));
},
);
});
}
| devtools/packages/devtools_app/test/inspector/layout_explorer/inspector_data_models_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/inspector/layout_explorer/inspector_data_models_test.dart",
"repo_id": "devtools",
"token_count": 7262
} | 119 |
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:devtools_app/src/screens/memory/shared/heap/class_filter.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
group('$ClassFilter', () {
test('task for ${ClassFilterType.except}', () {
final weaker = _exceptFilter('a');
final stronger = _exceptFilter('a\nb');
expect(stronger.task(previous: weaker), FilteringTask.reuse);
expect(weaker.task(previous: stronger), FilteringTask.refilter);
expect(weaker.task(previous: weaker), FilteringTask.doNothing);
});
test('task for ${ClassFilterType.only}', () {
final weaker = _onlyFilter('a\nb');
final stronger = _onlyFilter('a');
expect(stronger.task(previous: weaker), FilteringTask.reuse);
expect(weaker.task(previous: stronger), FilteringTask.refilter);
expect(weaker.task(previous: weaker), FilteringTask.doNothing);
});
test('task for ${ClassFilterType.showAll}', () {
final f1 = _allFilter('a', '');
final f2 = _allFilter('', 'b');
expect(f1.task(previous: f2), FilteringTask.doNothing);
expect(f2.task(previous: f1), FilteringTask.doNothing);
expect(f1.task(previous: f1), FilteringTask.doNothing);
});
});
}
ClassFilter _exceptFilter(String filter) =>
ClassFilter(filterType: ClassFilterType.except, except: filter, only: '');
ClassFilter _onlyFilter(String filter) =>
ClassFilter(filterType: ClassFilterType.only, except: '', only: filter);
ClassFilter _allFilter(String only, String except) => ClassFilter(
filterType: ClassFilterType.showAll,
except: except,
only: only,
);
| devtools/packages/devtools_app/test/memory/diff/controller/filter_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/memory/diff/controller/filter_test.dart",
"repo_id": "devtools",
"token_count": 641
} | 120 |
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:convert';
import 'package:devtools_app/src/screens/network/network_controller.dart';
import 'package:devtools_app/src/service/service_manager.dart';
import 'package:devtools_app/src/shared/primitives/utils.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:devtools_test/devtools_test.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:vm_service/vm_service.dart';
import '../test_infra/test_data/network.dart';
import 'utils/network_test_utils.dart';
void main() {
group('WebSocket', () {
test('id returns correct value', () {
expect(testSocket1.id, equals('10000'));
expect(testSocket2.id, equals('11111'));
});
test('lastReadTimestamp returns correct value', () {
// Test these values in UTC to avoid timezone differences with the bots.
expect(
formatDateTime(testSocket1.lastReadTimestamp!.toUtc()),
equals('0:00:01.800'),
);
expect(
formatDateTime(testSocket2.lastReadTimestamp!.toUtc()),
equals('0:00:03.500'),
);
});
test('lastWriteTimestamp returns correct value', () {
// Test these values in UTC to avoid timezone differences with the bots.
expect(
formatDateTime(testSocket1.lastWriteTimestamp!.toUtc()),
equals('0:00:01.850'),
);
expect(
formatDateTime(testSocket2.lastWriteTimestamp!.toUtc()),
equals('0:00:03.600'),
);
});
test('socketType returns correct value', () {
expect(testSocket1.socketType, equals('tcp'));
expect(testSocket2.socketType, equals('tcp'));
});
test('readBytes returns correct value', () {
expect(testSocket1.readBytes, equals(10));
expect(testSocket2.readBytes, equals(20));
});
test('writeBytes returns correct value', () {
expect(testSocket1.writeBytes, equals(15));
expect(testSocket2.writeBytes, equals(25));
});
test('equals and hash return the correct value', () {
expect(testSocket1.hashCode, equals('10000'.hashCode));
expect(testSocket2.hashCode, equals('11111'.hashCode));
expect(testSocket1 == testSocket2, isFalse);
expect(testSocket1 == testSocket3, isTrue);
});
});
group('DartIOHttpRequestData', () {
NetworkController controller;
FakeServiceConnectionManager fakeServiceConnection;
SocketProfile socketProfile;
HttpProfile httpProfile;
setUp(() async {
socketProfile = loadSocketProfile();
httpProfile = loadHttpProfile();
// DartIOHttpRequestData.getFullRequestData relies on a call to serviceManager to
// retrieve request details.
fakeServiceConnection = FakeServiceConnectionManager(
service: FakeServiceManager.createFakeService(
socketProfile: socketProfile,
httpProfile: httpProfile,
),
);
setGlobal(ServiceConnectionManager, fakeServiceConnection);
controller = NetworkController();
await controller.startRecording();
});
test('method returns correct value', () {
expect(httpGet.method, 'GET');
expect(httpGetWithError.method, 'GET');
expect(httpPost.method, 'POST');
expect(httpPut.method, 'PUT');
expect(httpPatch.method, 'PATCH');
expect(httpWsHandshake.method, equals('GET'));
});
test('uri returns correct value', () {
expect(httpGet.uri, 'https://jsonplaceholder.typicode.com/albums/1');
expect(httpGetWithError.uri, 'https://www.examplez.com/1');
expect(httpPost.uri, 'https://jsonplaceholder.typicode.com/posts');
expect(httpPut.uri, 'https://jsonplaceholder.typicode.com/posts/1');
expect(httpPatch.uri, 'https://jsonplaceholder.typicode.com/posts/1');
expect(httpWsHandshake.uri, 'http://localhost:8080');
});
test('contentType returns correct value', () {
expect(httpGet.contentType, '[application/json; charset=utf-8]');
expect(httpGetWithError.contentType, isNull);
expect(httpPost.contentType, '[application/json; charset=utf-8]');
expect(httpPut.contentType, '[application/json; charset=utf-8]');
expect(httpPatch.contentType, '[application/json; charset=utf-8]');
expect(httpWsHandshake.contentType, isNull);
});
test('type returns correct value', () {
expect(httpGet.type, 'json');
expect(httpGetWithError.type, 'http');
expect(httpPost.type, 'json');
expect(httpPut.type, 'json');
expect(httpPatch.type, 'json');
expect(httpWsHandshake.type, 'http');
});
test('duration returns correct value', () {
expect(httpGet.duration!.inMicroseconds, 6327091628 - 6326279935);
expect(
httpGetWithError.duration!.inMicroseconds,
5387256813 - 5385227316,
);
expect(httpPost.duration!.inMicroseconds, 2401000670 - 2399492629);
expect(httpPut.duration!.inMicroseconds, 1206609144 - 1205283313);
expect(httpPatch.duration!.inMicroseconds, 1911420918 - 1910177192);
expect(httpWsHandshake.duration!.inMicroseconds, 8140263470 - 8140222102);
});
test('startTimestamp returns correct value', () {
// Test these values in UTC to avoid timezone differences with the bots.
expect(
formatDateTime(httpGet.startTimestamp.toUtc()),
'1:45:26.279',
);
expect(
formatDateTime(httpGetWithError.startTimestamp.toUtc()),
'1:29:45.227',
);
expect(
formatDateTime(httpPost.startTimestamp.toUtc()),
'0:39:59.492',
);
expect(
formatDateTime(httpPut.startTimestamp.toUtc()),
'0:20:05.283',
);
expect(
formatDateTime(httpPatch.startTimestamp.toUtc()),
'0:31:50.177',
);
expect(
formatDateTime(httpWsHandshake.startTimestamp.toUtc()),
'2:15:40.222',
);
});
test('endTimestamp returns correct value', () {
// Test these values in UTC to avoid timezone differences with the bots.
expect(
formatDateTime(httpGet.endTimestamp!.toUtc()),
'1:45:27.091',
);
expect(
formatDateTime(httpGetWithError.endTimestamp!.toUtc()),
'1:29:47.256',
);
expect(
formatDateTime(httpPost.endTimestamp!.toUtc()),
'0:40:01.000',
);
expect(
formatDateTime(httpPut.endTimestamp!.toUtc()),
'0:20:06.609',
);
expect(
formatDateTime(httpPatch.endTimestamp!.toUtc()),
'0:31:51.420',
);
expect(
formatDateTime(httpWsHandshake.endTimestamp!.toUtc()),
'2:15:40.263',
);
});
test('status returns correct value', () {
expect(httpGet.status, '200');
expect(httpGetWithError.status, 'Error');
expect(httpPost.status, '201');
expect(httpPut.status, '200');
expect(httpPatch.status, '200');
expect(httpWsHandshake.status, '101');
});
test('port returns correct value', () {
expect(httpGet.port, 45648);
expect(httpGetWithError.port, isNull);
expect(httpPost.port, 55972);
expect(httpPut.port, 43684);
expect(httpPatch.port, 43864);
expect(httpWsHandshake.port, 56744);
});
test('durationDisplay returns correct value', () {
expect(httpGet.durationDisplay, 'Duration: 811.7 ms');
expect(httpGetWithError.durationDisplay, 'Duration: 2029.5 ms');
expect(httpPost.durationDisplay, 'Duration: 1508.0 ms');
expect(httpPut.durationDisplay, 'Duration: 1325.8 ms');
expect(httpPatch.durationDisplay, 'Duration: 1243.7 ms');
expect(httpWsHandshake.durationDisplay, 'Duration: 41.4 ms');
});
test('isValid returns correct value', () {
expect(httpGet.isValid, isTrue);
expect(httpGetWithError.isValid, isTrue);
expect(httpPost.isValid, isTrue);
expect(httpPut.isValid, isTrue);
expect(httpPatch.isValid, isTrue);
expect(httpWsHandshake.isValid, isTrue);
});
test('general returns correct value', () {
expect(
collectionEquals(httpGet.general, {
'method': 'GET',
'uri': 'https://jsonplaceholder.typicode.com/albums/1',
'connectionInfo': {
'localPort': 45648,
'remoteAddress': '2606:4700:3033::ac43:bdd9',
'remotePort': 443,
},
'contentLength': 0,
'compressionState': 'HttpClientResponseCompressionState.decompressed',
'isRedirect': false,
'persistentConnection': true,
'reasonPhrase': 'OK',
'redirects': <Object?>[],
'statusCode': 200,
}),
isTrue,
);
expect(
collectionEquals(httpGetWithError.general, {
'method': 'GET',
'uri': 'https://www.examplez.com/1',
}),
isTrue,
);
expect(
collectionEquals(httpPost.general, {
'method': 'POST',
'uri': 'https://jsonplaceholder.typicode.com/posts',
'connectionInfo': {
'localPort': 55972,
'remoteAddress': '2606:4700:3033::ac43:bdd9',
'remotePort': 443,
},
'contentLength': -1,
'compressionState':
'HttpClientResponseCompressionState.notCompressed',
'isRedirect': false,
'persistentConnection': true,
'reasonPhrase': 'Created',
'redirects': <Object?>[],
'statusCode': 201,
}),
isTrue,
);
expect(
collectionEquals(httpPut.general, {
'method': 'PUT',
'uri': 'https://jsonplaceholder.typicode.com/posts/1',
'connectionInfo': {
'localPort': 43684,
'remoteAddress': '2606:4700:3033::ac43:bdd9',
'remotePort': 443,
},
'contentLength': -1,
'compressionState':
'HttpClientResponseCompressionState.notCompressed',
'isRedirect': false,
'persistentConnection': true,
'reasonPhrase': 'OK',
'redirects': <Object?>[],
'statusCode': 200,
}),
isTrue,
);
expect(
collectionEquals(httpPatch.general, {
'method': 'PATCH',
'uri': 'https://jsonplaceholder.typicode.com/posts/1',
'connectionInfo': {
'localPort': 43864,
'remoteAddress': '2606:4700:3033::ac43:bdd9',
'remotePort': 443,
},
'contentLength': -1,
'compressionState': 'HttpClientResponseCompressionState.decompressed',
'isRedirect': false,
'persistentConnection': true,
'reasonPhrase': 'OK',
'redirects': <Object?>[],
'statusCode': 200,
}),
isTrue,
);
expect(
collectionEquals(httpWsHandshake.general, {
'method': 'GET',
'uri': 'http://localhost:8080',
'connectionInfo': {
'localPort': 56744,
'remoteAddress': '127.0.0.1',
'remotePort': 8080,
},
'contentLength': 0,
'compressionState':
'HttpClientResponseCompressionState.notCompressed',
'isRedirect': false,
'persistentConnection': true,
'reasonPhrase': 'Switching Protocols',
'redirects': <Object?>[],
'statusCode': 101,
}),
isTrue,
);
});
test('inProgress returns correct value', () {
expect(httpGet.inProgress, false);
expect(httpGetWithError.inProgress, false);
expect(httpPost.inProgress, false);
expect(httpPut.inProgress, false);
expect(httpPatch.inProgress, false);
expect(httpWsHandshake.inProgress, false);
});
test('requestHeaders returns correct value', () {
expect(
collectionEquals(httpGet.requestHeaders, {
'content-length': ['0'],
}),
isTrue,
);
expect(httpGetWithError.requestHeaders, isNull);
expect(
collectionEquals(httpPost.requestHeaders, {
'transfer-encoding': <Object?>[],
}),
isTrue,
);
expect(
collectionEquals(httpPut.requestHeaders, {
'transfer-encoding': <Object?>[],
}),
isTrue,
);
expect(
collectionEquals(httpPatch.requestHeaders, {
'transfer-encoding': <Object?>[],
}),
isTrue,
);
expect(
collectionEquals(httpWsHandshake.requestHeaders, {
'content-length': ['0'],
}),
isTrue,
);
});
test('responseHeaders returns correct value', () {
expect(
collectionEquals(httpGet.responseHeaders, {
'content-encoding': ['gzip'],
'pragma': ['no-cache'],
'connection': ['keep-alive'],
'cache-control': ['max-age=43200'],
'content-type': ['application/json; charset=utf-8'],
}),
isTrue,
);
expect(httpGetWithError.responseHeaders, isNull);
expect(
collectionEquals(httpPost.responseHeaders, {
'date': ['Wed, 04 Aug 2021 07:57:26 GMT'],
'location': ['http://jsonplaceholder.typicode.com/posts/101'],
'content-length': [15],
'connection': ['keep-alive'],
'cache-control': ['no-cache'],
'content-type': ['application/json; charset=utf-8'],
'x-powered-by': ['Express'],
'expires': [-1],
}),
isTrue,
);
expect(
collectionEquals(httpPut.responseHeaders, {
'connection': ['keep-alive'],
'cache-control': ['no-cache'],
'date': ['Wed, 04 Aug 2021 08:57:24 GMT'],
'content-type': ['application/json; charset=utf-8'],
'pragma': ['no-cache'],
'access-control-allow-credentials': [true],
'content-length': [13],
'expires': [-1],
}),
isTrue,
);
expect(
collectionEquals(httpPatch.responseHeaders, {
'connection': ['keep-alive'],
'cache-control': ['no-cache'],
'transfer-encoding': ['chunked'],
'date': ['Wed, 04 Aug 2021 09:09:09 GMT'],
'content-encoding': ['gzip'],
'content-type': ['application/json; charset=utf-8'],
'pragma': ['no-cache'],
'expires': [-1],
}),
isTrue,
);
expect(
collectionEquals(httpWsHandshake.responseHeaders, {
'connection': ['Upgrade'],
'upgrade': ['websocket'],
'content-length': [0],
'sec-websocket-version': [13],
'sec-websocket-accept': ['JF5SBCGrfyYAoLKzvj6A0ZVpk6c='],
}),
isTrue,
);
});
test('requestCookies returns correct value', () {
expect(httpGet.requestCookies, isEmpty);
expect(httpGetWithError.requestCookies, isEmpty);
expect(httpPost.requestCookies, isEmpty);
expect(httpPut.requestCookies, isEmpty);
expect(httpPatch.requestCookies, isEmpty);
expect(httpWsHandshake.requestCookies, isEmpty);
});
test('responseCookies returns correct value', () {
expect(httpGet.responseCookies, isEmpty);
expect(httpGetWithError.responseCookies, isEmpty);
expect(httpPost.responseCookies, isEmpty);
expect(httpPut.responseCookies, isEmpty);
expect(httpPatch.responseCookies, isEmpty);
expect(httpWsHandshake.responseCookies, isEmpty);
});
test('hasCookies returns correct value', () {
expect(httpGet.hasCookies, isFalse);
expect(httpGetWithError.hasCookies, isFalse);
expect(httpPost.hasCookies, isFalse);
expect(httpPut.hasCookies, isFalse);
expect(httpPatch.hasCookies, isFalse);
expect(httpWsHandshake.hasCookies, isFalse);
});
test('requestBody returns correct value', () {
expect(httpGet.requestBody, isNull);
expect(httpGetWithError.requestBody, isNull);
expect(httpPost.requestBody, utf8.decode(httpPostRequestBodyData));
expect(httpPut.requestBody, utf8.decode(httpPutRequestBodyData));
expect(httpPatch.requestBody, utf8.decode(httpPatchRequestBodyData));
expect(httpWsHandshake.requestBody, isNull);
});
test('responseBody returns correct value', () {
expect(httpGet.responseBody, utf8.decode(httpGetResponseBodyData));
expect(httpGetWithError.responseBody, isNull);
expect(httpPost.responseBody, utf8.decode(httpPostResponseBodyData));
expect(httpPut.responseBody, utf8.decode(httpPutResponseBodyData));
expect(httpPatch.responseBody, utf8.decode(httpPatchResponseBodyData));
expect(httpWsHandshake.responseBody, isEmpty);
});
test('didFail returns correct value', () {
expect(httpGet.didFail, false);
expect(httpGetWithError.didFail, true);
expect(httpPost.didFail, false);
expect(httpPut.didFail, false);
expect(httpPatch.didFail, false);
expect(httpWsHandshake.didFail, false);
});
});
}
| devtools/packages/devtools_app/test/network/network_model_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/network/network_model_test.dart",
"repo_id": "devtools",
"token_count": 7502
} | 121 |
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@TestOn('vm')
import 'dart:async';
import 'package:devtools_app/devtools_app.dart';
import 'package:devtools_app/src/screens/performance/panes/controls/performance_controls.dart';
import 'package:devtools_app/src/screens/performance/panes/timeline_events/timeline_events_view.dart';
import 'package:devtools_app/src/screens/performance/tabbed_performance_view.dart';
import 'package:devtools_app/src/shared/feature_flags.dart';
import 'package:devtools_app_shared/service.dart';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:devtools_shared/devtools_test_utils.dart';
import 'package:devtools_test/devtools_test.dart';
import 'package:devtools_test/helpers.dart';
import 'package:flutter/material.dart';
import 'package:flutter_markdown/flutter_markdown.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:mockito/mockito.dart';
import '../test_infra/test_data/performance/sample_performance_data.dart';
void main() {
const windowSize = Size(3000.0, 1000.0);
setUp(() {
setGlobal(
DevToolsEnvironmentParameters,
ExternalDevToolsEnvironmentParameters(),
);
setGlobal(IdeTheme, IdeTheme());
setGlobal(PreferencesController, PreferencesController());
setGlobal(OfflineModeController, OfflineModeController());
setGlobal(NotificationService, NotificationService());
setGlobal(BannerMessagesController, BannerMessagesController());
});
group('$PerformanceScreen', () {
late PerformanceController controller;
late FakeServiceConnectionManager fakeServiceConnection;
Future<void> setUpServiceManagerWithTimeline() async {
fakeServiceConnection = FakeServiceConnectionManager(
service: FakeServiceManager.createFakeService(
timelineData: perfettoVmTimeline,
),
);
when(
fakeServiceConnection.errorBadgeManager
.errorCountNotifier('performance'),
).thenReturn(ValueNotifier<int>(0));
final app = fakeServiceConnection.serviceManager.connectedApp!;
when(app.initialized).thenReturn(Completer()..complete(true));
when(app.isDartWebAppNow).thenReturn(false);
when(app.isFlutterAppNow).thenReturn(true);
when(app.isProfileBuild).thenAnswer((_) => Future.value(false));
when(app.flutterVersionNow).thenReturn(
FlutterVersion.parse(
(await fakeServiceConnection.serviceManager.flutterVersion).json!,
),
);
when(app.isDartCliAppNow).thenReturn(false);
when(app.isProfileBuildNow).thenReturn(true);
when(app.isDartWebApp).thenAnswer((_) async => false);
when(app.isProfileBuild).thenAnswer((_) async => false);
setGlobal(ServiceConnectionManager, fakeServiceConnection);
}
Future<void> pumpPerformanceScreen(
WidgetTester tester, {
bool runAsync = false,
}) async {
await tester.pumpWidget(
wrapWithControllers(
Builder(
builder: PerformanceScreen().build,
),
performance: controller,
),
);
await tester.pumpAndSettle();
if (runAsync) {
// Await a small delay to allow the PerformanceController to complete
// initialization.
await Future.delayed(const Duration(seconds: 1));
}
expect(find.byType(PerformanceScreenBody), findsOneWidget);
}
setUp(() async {
preferences.performance.showFlutterFramesChart.value = true;
await setUpServiceManagerWithTimeline();
await shortDelay();
controller = PerformanceController();
await controller.initialized;
});
testWidgets('builds its tab', (WidgetTester tester) async {
final screen = PerformanceScreen();
await tester.pumpWidget(
wrapWithControllers(
Builder(builder: screen.buildTab),
performance: controller,
),
);
expect(find.text('Performance'), findsOneWidget);
});
testWidgetsWithWindowSize(
'builds initial content',
windowSize,
(WidgetTester tester) async {
await tester.runAsync(() async {
await pumpPerformanceScreen(tester, runAsync: true);
await tester.pumpAndSettle();
expect(find.byType(PerformanceScreenBody), findsOneWidget);
expect(find.byType(WebPerformanceScreenBody), findsNothing);
expect(find.byType(PerformanceControls), findsOneWidget);
expect(find.byType(FlutterFramesChart), findsOneWidget);
expect(find.byType(TabbedPerformanceView), findsOneWidget);
expect(
find.text('Select a frame above to view analysis data.'),
findsOneWidget,
);
});
},
);
testWidgetsWithWindowSize(
'builds initial content for Dart web app',
windowSize,
(WidgetTester tester) async {
setEnableExperiments();
mockConnectedApp(
fakeServiceConnection.serviceManager.connectedApp!,
isFlutterApp: false,
isProfileBuild: false,
isWebApp: true,
);
await tester.pumpWidget(
wrap(
Builder(builder: PerformanceScreen().build),
),
);
await tester.pumpAndSettle();
expect(find.byType(PerformanceScreenBody), findsNothing);
expect(find.byType(WebPerformanceScreenBody), findsOneWidget);
expect(
markdownFinder(
'How to use Chrome DevTools for performance profiling',
),
findsOneWidget,
);
// Make sure NO Flutter-specific information is included:
expect(
markdownFinder(
'The Flutter framework emits timeline events',
),
findsNothing,
);
},
);
testWidgetsWithWindowSize(
'builds initial content for Flutter web app',
windowSize,
(WidgetTester tester) async {
setEnableExperiments();
mockConnectedApp(
fakeServiceConnection.serviceManager.connectedApp!,
isFlutterApp: true,
isProfileBuild: false,
isWebApp: true,
);
await tester.pumpWidget(
wrap(
Builder(builder: PerformanceScreen().build),
),
);
await tester.pumpAndSettle();
expect(find.byType(PerformanceScreenBody), findsNothing);
expect(find.byType(WebPerformanceScreenBody), findsOneWidget);
expect(
markdownFinder(
'How to use Chrome DevTools for performance profiling',
),
findsOneWidget,
);
// Make sure Flutter-specific information is included:
expect(
markdownFinder(
'The Flutter framework emits timeline events',
),
findsOneWidget,
);
},
);
testWidgetsWithWindowSize(
'builds initial content for non-flutter app',
windowSize,
(WidgetTester tester) async {
await tester.runAsync(() async {
mockConnectedApp(
fakeServiceConnection.serviceManager.connectedApp!,
isFlutterApp: false,
isProfileBuild: false,
isWebApp: false,
);
await pumpPerformanceScreen(tester, runAsync: true);
await tester.pumpAndSettle();
expect(find.byType(PerformanceControls), findsOneWidget);
expect(find.byType(FlutterFramesChart), findsNothing);
expect(find.byType(TabbedPerformanceView), findsOneWidget);
expect(find.byType(TimelineEventsTabView), findsOneWidget);
});
},
);
group('controls', () {
testWidgetsWithWindowSize(
'can expand and collapse flutter frames chart',
windowSize,
(WidgetTester tester) async {
await tester.runAsync(() async {
await pumpPerformanceScreen(tester, runAsync: true);
await tester.pumpAndSettle();
final chartButtonFinder = find.byType(VisibilityButton);
expect(chartButtonFinder, findsOneWidget);
// The flutter frames chart is visible.
expect(find.byType(FramesChartControls), findsOneWidget);
expect(
preferences.performance.showFlutterFramesChart.value,
isTrue,
);
await tester.tap(chartButtonFinder);
await tester.pumpAndSettle();
// The flutter frames chart should no longer be visible.
expect(find.byType(FramesChartControls), findsNothing);
expect(
preferences.performance.showFlutterFramesChart.value,
isFalse,
);
await tester.tap(chartButtonFinder);
await tester.pumpAndSettle();
// The flutter frames chart should be visible again.
expect(find.byType(FramesChartControls), findsOneWidget);
expect(
preferences.performance.showFlutterFramesChart.value,
isTrue,
);
});
},
);
// testWidgetsWithWindowSize(
// 'clears timeline on clear',
// windowSize,
// (WidgetTester tester) async {
// await tester.runAsync(() async {
// await pumpPerformanceScreen(tester, runAsync: true);
// await tester.pumpAndSettle();
// // Ensure the Timeline Events tab is selected.
// final timelineEventsTabFinder = find.text('Timeline Events');
// expect(timelineEventsTabFinder, findsOneWidget);
// await tester.tap(timelineEventsTabFinder);
// await tester.pumpAndSettle();
// expect(
// controller.timelineEventsController.allTraceEvents,
// isNotEmpty,
// );
// expect(find.byType(FlutterFramesChart), findsOneWidget);
// expect(find.byType(TimelineFlameChart), findsOneWidget);
// expect(
// find.byKey(TimelineEventsView.emptyTimelineKey),
// findsNothing,
// );
// expect(find.byType(EventDetails), findsOneWidget);
// await tester.tap(find.byIcon(Icons.block));
// await tester.pumpAndSettle();
// expect(controller.timelineEventsController.allTraceEvents, isEmpty);
// expect(find.byType(FlutterFramesChart), findsOneWidget);
// expect(find.byType(TimelineFlameChart), findsNothing);
// expect(
// find.byKey(TimelineEventsView.emptyTimelineKey),
// findsOneWidget,
// );
// expect(find.byType(EventDetails), findsNothing);
// });
// },
// );
testWidgetsWithWindowSize(
'opens enhance tracing overlay',
windowSize,
(WidgetTester tester) async {
await tester.runAsync(() async {
await pumpPerformanceScreen(tester, runAsync: true);
await tester.pumpAndSettle();
expect(find.text('Enhance Tracing'), findsOneWidget);
await tester.tap(find.text('Enhance Tracing'));
await tester.pumpAndSettle();
expect(
find.richTextContaining('frame times may be negatively affected'),
findsOneWidget,
);
expect(
find.richTextContaining(
'you will need to reproduce activity in your app',
),
findsOneWidget,
);
expect(
find.richTextContaining('Track widget builds'),
findsOneWidget,
);
expect(find.richTextContaining('Track layouts'), findsOneWidget);
expect(find.richTextContaining('Track paints'), findsOneWidget);
expect(
find.richTextContaining('Track platform channels'),
findsOneWidget,
);
expect(find.byType(MoreInfoLink), findsNWidgets(4));
});
},
);
testWidgetsWithWindowSize(
'opens more debugging options overlay',
windowSize,
(WidgetTester tester) async {
await tester.runAsync(() async {
await pumpPerformanceScreen(tester, runAsync: true);
await tester.pumpAndSettle();
expect(find.text('More debugging options'), findsOneWidget);
await tester.tap(find.text('More debugging options'));
await tester.pumpAndSettle();
expect(
find.richTextContaining(
'After toggling a rendering layer on/off, '
'reproduce the activity in your app to see the effects',
),
findsOneWidget,
);
expect(
find.richTextContaining('Render Clip layers'),
findsOneWidget,
);
expect(
find.richTextContaining('Render Opacity layers'),
findsOneWidget,
);
expect(
find.richTextContaining('Render Physical Shape layers'),
findsOneWidget,
);
expect(
find.richTextContaining(
"These debugging options aren't available in profile mode. "
'To use them, run your app in debug mode.',
),
findsOneWidget,
);
expect(find.byType(MoreInfoLink), findsNWidgets(3));
});
},
);
testWidgetsWithWindowSize(
'hides warning in debugging options overlay when in debug mode',
windowSize,
(WidgetTester tester) async {
when(
fakeServiceConnection
.serviceManager.connectedApp!.isProfileBuildNow,
).thenReturn(false);
await tester.runAsync(() async {
await pumpPerformanceScreen(tester, runAsync: true);
await tester.pumpAndSettle();
expect(find.text('More debugging options'), findsOneWidget);
await tester.tap(find.text('More debugging options'));
await tester.pumpAndSettle();
expect(
find.richTextContaining(
"These debugging options aren't available in profile mode. "
'To use them, run your app in debug mode.',
),
findsNothing,
);
});
},
);
});
});
}
Finder markdownFinder(String textMatch) => find.byWidgetPredicate(
(widget) => widget is Markdown && widget.data.contains(textMatch),
);
| devtools/packages/devtools_app/test/performance/performance_screen_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/performance/performance_screen_test.dart",
"repo_id": "devtools",
"token_count": 6430
} | 122 |
// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:devtools_app/devtools_app.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
group('FilterControllerMixin', () {
late _TestController controller;
void verifyBaseFilterState() {
final activeFilter = controller.activeFilter.value;
for (final toggleFilter in activeFilter.toggleFilters) {
expect(
toggleFilter.enabled.value,
equals(toggleFilter.enabledByDefault),
);
}
expect(activeFilter.queryFilter.isEmpty, isTrue);
}
setUp(() {
controller = _TestController(_sampleData);
expect(controller.data.length, _sampleData.length);
expect(controller.filteredData.value, isEmpty);
verifyBaseFilterState();
});
test('setActiveFilter applies default filters', () {
// Verify the default state of the active filter.
final activeFilter = controller.activeFilter.value;
expect(activeFilter.queryFilter.isEmpty, isTrue);
expect(activeFilter.toggleFilters.length, equals(2));
controller.setActiveFilter();
expect(
controller.filteredData.value.toString(),
equals(
'[1-FooBar-foobar, 3-Baz-foobar, 5-Basset Hound-dog, 7-Shepherd\'s pie-food, 9-Meal bar-food]',
),
);
});
test('filterData applies query and toggle filters', () {
// Disable all toggle filters.
for (final toggleFilter in controller.activeFilter.value.toggleFilters) {
toggleFilter.enabled.value = false;
}
expect(controller.useRegExp.value, isFalse);
controller.setActiveFilter();
expect(
controller.filteredData.value.toString(),
_sampleData.toString(),
);
// Only query filter.
controller.setActiveFilter(query: 'Ba');
expect(
controller.filteredData.value.toString(),
equals(
'[1-FooBar-foobar, 2-Bar-foobar, 3-Baz-foobar, 5-Basset Hound-dog, 9-Meal bar-food]',
),
);
controller.setActiveFilter(query: 'Ba cat:foobar');
expect(
controller.filteredData.value.toString(),
equals('[1-FooBar-foobar, 2-Bar-foobar, 3-Baz-foobar]'),
);
controller.setActiveFilter(query: 'Baz foo cat:foobar');
expect(
controller.filteredData.value.toString(),
equals('[0-Foo-foobar, 1-FooBar-foobar, 3-Baz-foobar]'),
);
// Ain't nothin' but a hound dog
controller.setActiveFilter(query: 'Basset');
expect(
controller.filteredData.value.toString(),
equals('[5-Basset Hound-dog]'),
);
// Only toggle filter.
controller.toggleFilters[1].enabled.value = true;
controller.setActiveFilter(
toggleFilters: controller.toggleFilters,
);
expect(
controller.filteredData.value.toString(),
equals(
'[1-FooBar-foobar, 2-Bar-foobar, 4-Shepherd-dog, 5-Basset Hound-dog, 7-Shepherd\'s pie-food, 8-Orange-food]',
),
);
// Query and toggle filter.
controller.toggleFilters[0].enabled.value = true;
controller.toggleFilters[1].enabled.value = true;
controller.setActiveFilter(query: 'Ba cat:foobar');
expect(
controller.filteredData.value.toString(),
equals('[1-FooBar-foobar]'),
);
// Excessive filter returns empty list.
controller.toggleFilters[0].enabled.value = false;
controller.toggleFilters[1].enabled.value = false;
controller.setActiveFilter(query: 'abcdefg');
expect(
controller.filteredData.value.toString(),
equals('[]'),
);
});
test('filterData applies regexp query filters when enabled', () {
// Disable all toggle filters.
for (final toggleFilter in controller.activeFilter.value.toggleFilters) {
toggleFilter.enabled.value = false;
}
controller.useRegExp.value = true;
controller.setActiveFilter();
expect(
controller.filteredData.value.toString(),
_sampleData.toString(),
);
// Regexp filter argument match.
controller.setActiveFilter(query: 'cat:foo.*');
expect(
controller.filteredData.value.toString(),
equals(
'[0-Foo-foobar, 1-FooBar-foobar, 2-Bar-foobar, 3-Baz-foobar, 7-Shepherd\'s pie-food, 8-Orange-food, 9-Meal bar-food]',
),
);
controller.setActiveFilter(query: '-cat:foo.*');
expect(
controller.filteredData.value.toString(),
equals(
'[4-Shepherd-dog, 5-Basset Hound-dog, 6-Husky-dog]',
),
);
// Regexp substring match.
controller.setActiveFilter(query: '.*bar');
expect(
controller.filteredData.value.toString(),
equals(
'[1-FooBar-foobar, 2-Bar-foobar, 9-Meal bar-food]',
),
);
// Disable regexp filters and verify filter behavior changes.
controller.useRegExp.value = false;
// Regexp filter argument match.
controller.setActiveFilter(query: 'cat:foo.*');
expect(controller.filteredData.value, isEmpty);
controller.setActiveFilter(query: '-cat:foo.*');
expect(
controller.filteredData.value.toString(),
_sampleData.toString(),
);
// Regexp substring match.
controller.setActiveFilter(query: '.*bar');
expect(controller.filteredData.value, isEmpty);
});
test('isFilterActive', () {
controller.toggleFilters[0].enabled.value = true;
controller.toggleFilters[1].enabled.value = false;
controller.setActiveFilter();
expect(controller.isFilterActive, isTrue);
controller.toggleFilters[0].enabled.value = false;
controller.toggleFilters[1].enabled.value = true;
controller.setActiveFilter();
expect(controller.isFilterActive, isTrue);
controller.toggleFilters[0].enabled.value = false;
controller.toggleFilters[1].enabled.value = false;
controller.setActiveFilter();
expect(controller.isFilterActive, equals(false));
controller.setActiveFilter(query: 'bar');
expect(controller.isFilterActive, isTrue);
controller.setActiveFilter(query: 'cat:foobar');
expect(controller.isFilterActive, isTrue);
});
test('activeFilterTag', () {
// No filters active.
controller.toggleFilters[0].enabled.value = false;
controller.toggleFilters[1].enabled.value = false;
controller.setActiveFilter();
expect(controller.activeFilterTag(), equals(''));
// Only query filter active and no toggle filters.
controller.setActiveFilter(query: 'Ba cat:foobar');
expect(controller.activeFilterTag(), 'ba cat:foobar');
// Query filter with regular expressions enabled.
controller.useRegExp.value = true;
controller.setActiveFilter(query: 'Ba cat:foobar');
expect(controller.activeFilterTag(), 'ba cat:foobar-#-regexp');
controller.useRegExp.value = false;
// Only toggle filter active and no query filters.
controller.toggleFilters[0].enabled.value = true;
controller.setActiveFilter();
expect(controller.activeFilterTag(), equals('Hide multiples of 2'));
controller.toggleFilters[1].enabled.value = true;
controller.setActiveFilter();
expect(
controller.activeFilterTag(),
equals('Hide multiples of 2,Hide multiples of 3'),
);
controller.toggleFilters[0].enabled.value = false;
controller.setActiveFilter();
expect(controller.activeFilterTag(), equals('Hide multiples of 3'));
// Both query filter and toggle filters active.
controller.toggleFilters[0].enabled.value = true;
controller.toggleFilters[1].enabled.value = true;
controller.setActiveFilter(query: 'Ba cat:foobar');
expect(
controller.activeFilterTag(),
equals(
'Hide multiples of 2,Hide multiples of 3-#-ba cat:foobar',
),
);
});
test('resetFilter', () {
// Verify default state.
controller.resetFilter();
verifyBaseFilterState();
controller.toggleFilters[0].enabled.value = true;
controller.toggleFilters[1].enabled.value = true;
controller.setActiveFilter(query: 'cat:foobar');
for (final toggleFilter in controller.toggleFilters) {
expect(toggleFilter.enabled.value, isTrue);
}
expect(controller.activeFilter.value.queryFilter.isEmpty, isFalse);
controller.resetFilter();
verifyBaseFilterState();
});
});
}
class _TestController extends DisposableController
with FilterControllerMixin<_TestDataClass>, AutoDisposeControllerMixin {
_TestController(this.data) {
subscribeToFilterChanges();
}
final List<_TestDataClass> data;
// Convenience getters for testing.
List<ToggleFilter<_TestDataClass>> get toggleFilters =>
activeFilter.value.toggleFilters;
@override
List<ToggleFilter<_TestDataClass>> createToggleFilters() => [
ToggleFilter<_TestDataClass>(
name: 'Hide multiples of 2',
includeCallback: (data) => data.id % 2 != 0,
enabledByDefault: true,
),
ToggleFilter<_TestDataClass>(
name: 'Hide multiples of 3',
includeCallback: (data) => data.id % 3 != 0,
),
];
static const categoryFilterId = 'category-filter';
@override
Map<String, QueryFilterArgument> createQueryFilterArgs() => {
categoryFilterId: QueryFilterArgument<_TestDataClass>(
keys: ['cat', 'c'],
dataValueProvider: (data) => data.category,
substringMatch: false,
),
};
@override
void filterData(Filter<_TestDataClass> filter) {
super.filterData(filter);
if (filter.isEmpty) {
filteredData
..clear()
..addAll(data);
return;
}
bool filterCallback(_TestDataClass element) {
// First filter by the toggle filters.
final filteredOutByToggleFilters = filter.toggleFilters.any(
(toggleFilter) =>
toggleFilter.enabled.value &&
!toggleFilter.includeCallback(element),
);
if (filteredOutByToggleFilters) return false;
final queryFilter = filter.queryFilter;
if (!queryFilter.isEmpty) {
final filteredOutByQueryFilterArgument = queryFilter
.filterArguments.values
.any((argument) => !argument.matchesValue(element));
if (filteredOutByQueryFilterArgument) return false;
// Match substrings to [_TestDataClass.label].
if (queryFilter.substringExpressions.isNotEmpty) {
for (final substring in queryFilter.substringExpressions) {
bool matches(String? stringToMatch) {
if (stringToMatch?.caseInsensitiveContains(substring) == true) {
return true;
}
return false;
}
if (matches(element.label)) return true;
}
return false;
}
}
return true;
}
filteredData
..clear()
..addAll(data.where(filterCallback));
}
}
class _TestDataClass {
const _TestDataClass(this.id, this.label, this.category);
final int id;
final String label;
final String category;
@override
String toString() {
return [id.toString(), label, category].join('-');
}
}
const _sampleData = [
_TestDataClass(0, 'Foo', 'foobar'),
_TestDataClass(1, 'FooBar', 'foobar'),
_TestDataClass(2, 'Bar', 'foobar'),
_TestDataClass(3, 'Baz', 'foobar'),
_TestDataClass(4, 'Shepherd', 'dog'),
_TestDataClass(5, 'Basset Hound', 'dog'),
_TestDataClass(6, 'Husky', 'dog'),
_TestDataClass(7, 'Shepherd\'s pie', 'food'),
_TestDataClass(8, 'Orange', 'food'),
_TestDataClass(9, 'Meal bar', 'food'),
];
| devtools/packages/devtools_app/test/shared/filter_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/shared/filter_test.dart",
"repo_id": "devtools",
"token_count": 4751
} | 123 |
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:devtools_app/src/framework/notifications_view.dart';
import 'package:devtools_app/src/shared/globals.dart';
import 'package:devtools_app/src/shared/notifications.dart';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
group('Notifications', () {
Future<void> showNotification(
void Function() triggerNotification, {
required WidgetTester tester,
}) async {
final notificationsWidget = Directionality(
textDirection: TextDirection.ltr,
child: NotificationsView(
child: Builder(
builder: (context) {
return ElevatedButton(
onPressed: triggerNotification,
child: const SizedBox(),
);
},
),
),
);
await tester.pumpWidget(notificationsWidget);
await tester.pumpAndSettle();
await tester.tap(find.byType(ElevatedButton));
await tester.pumpAndSettle();
}
setUp(() {
setGlobal(IdeTheme, IdeTheme());
setGlobal(NotificationService, NotificationService());
});
testWidgets('displays notifications', (WidgetTester tester) async {
const notification = 'This is a notification!';
await showNotification(
() => notificationService.push(notification),
tester: tester,
);
expect(find.text(notification), findsOneWidget);
await tester.tap(find.byType(ElevatedButton));
await tester.pumpAndSettle();
expect(find.text(notification), findsNWidgets(2));
});
testWidgets(
'dismissible notifications can be dismissed',
(WidgetTester tester) async {
const notification = 'This is a notification!';
await showNotification(
() => notificationService.push(notification, isDismissible: true),
tester: tester,
);
final closeButton = find.byType(IconButton);
expect(closeButton, findsOneWidget);
await tester.tap(closeButton);
// Verify the notification has been dismissed:
await tester.pumpAndSettle();
expect(find.text(notification), findsNothing);
},
);
testWidgets(
'non-dismissible notifications expire',
(WidgetTester tester) async {
const notification = 'This is a notification!';
await showNotification(
() => notificationService.push(notification),
tester: tester,
);
expect(find.text(notification), findsOneWidget);
// Wait for the notification to disappear.
await tester.pumpAndSettle(NotificationMessage.defaultDuration);
expect(find.text(notification), findsNothing);
},
);
testWidgets(
'dismissible notifications do not expire',
(WidgetTester tester) async {
const notification = 'This is a notification!';
await showNotification(
() => notificationService.push(notification, isDismissible: true),
tester: tester,
);
// Wait for the default dismiss duration.
await tester.pumpAndSettle(NotificationMessage.defaultDuration);
// Verify the notification is still there.
expect(find.text(notification), findsOneWidget);
},
);
testWidgets('persist across routes', (WidgetTester tester) async {
const notification = 'Navigating to /details';
const detailsKey = Key('details page');
var timesPressed = 0;
Widget build() {
return MaterialApp(
builder: (context, child) => NotificationsView(child: child!),
routes: {
'/': (context) {
return ElevatedButton(
onPressed: () {
if (timesPressed == 0) {
notificationService.push(notification);
} else {
unawaited(Navigator.of(context).pushNamed('/details'));
}
timesPressed++;
},
child: const SizedBox(),
);
},
'/details': (context) {
return const SizedBox(key: detailsKey);
},
},
);
}
await tester.pumpWidget(build());
expect(find.text(notification), findsNothing);
expect(find.byKey(detailsKey), findsNothing);
// The first tap of the button will show the notification.
await tester.tap(find.byType(ElevatedButton));
await tester.pumpAndSettle();
expect(find.text(notification), findsOneWidget);
expect(find.byKey(detailsKey), findsNothing);
// The second tap will navigate to /details.
await tester.tap(find.byType(ElevatedButton));
await tester.pumpAndSettle();
expect(find.text(notification), findsOneWidget);
expect(find.byKey(detailsKey), findsOneWidget);
});
group('Error notifications', () {
testWidgets('displays errors', (WidgetTester tester) async {
const errorMessage = 'This is an error!';
await showNotification(
() => notificationService.push(errorMessage),
tester: tester,
);
expect(find.text(errorMessage), findsOneWidget);
});
testWidgets('are reportable by default', (WidgetTester tester) async {
const errorMessage = 'This is an error!';
await showNotification(
() => notificationService.pushError(errorMessage),
tester: tester,
);
expect(
find.widgetWithText(OutlinedButton, 'Report error'),
findsOneWidget,
);
});
testWidgets('are dismissable by default', (WidgetTester tester) async {
const errorMessage = 'This is an error!';
await showNotification(
() => notificationService.pushError(errorMessage),
tester: tester,
);
final closeButton = find.byType(IconButton);
expect(closeButton, findsOneWidget);
await tester.tap(closeButton);
// Verify the error has been dismissed:
await tester.pumpAndSettle();
expect(find.text(errorMessage), findsNothing);
});
});
});
}
| devtools/packages/devtools_app/test/shared/notifications_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/shared/notifications_test.dart",
"repo_id": "devtools",
"token_count": 2680
} | 124 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.