text
stringlengths 6
13.6M
| id
stringlengths 13
176
| metadata
dict | __index_level_0__
int64 0
1.69k
|
---|---|---|---|
// Copyright 2023 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:extra_alignments/extra_alignments.dart';
import 'package:flutter/material.dart';
import 'package:focusable_control_builder/focusable_control_builder.dart';
import 'package:gap/gap.dart';
import '../assets.dart';
import '../common/ui_scaler.dart';
import '../styles.dart';
class TitleScreenUi extends StatelessWidget {
const TitleScreenUi({
super.key,
required this.difficulty,
required this.onDifficultyPressed,
required this.onDifficultyFocused,
});
final int difficulty;
final void Function(int difficulty) onDifficultyPressed;
final void Function(int? difficulty) onDifficultyFocused;
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 40, horizontal: 50),
child: Stack(
children: [
/// Title Text
const TopLeft(
child: UiScaler(
alignment: Alignment.topLeft,
child: _TitleText(),
),
),
/// Difficulty Btns
BottomLeft(
child: UiScaler(
alignment: Alignment.bottomLeft,
child: _DifficultyBtns(
difficulty: difficulty,
onDifficultyPressed: onDifficultyPressed,
onDifficultyFocused: onDifficultyFocused,
),
),
),
],
),
);
}
}
class _TitleText extends StatelessWidget {
const _TitleText();
@override
Widget build(BuildContext context) {
return Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Gap(20),
Row(
mainAxisSize: MainAxisSize.min,
children: [
Transform.translate(
offset: Offset(-(TextStyles.h1.letterSpacing! * .5), 0),
child: Text('OUTPOST', style: TextStyles.h1),
),
Image.asset(AssetPaths.titleSelectedLeft, height: 65),
Text('57', style: TextStyles.h2),
Image.asset(AssetPaths.titleSelectedRight, height: 65),
],
),
Text('INTO THE UNKNOWN', style: TextStyles.h3),
],
);
}
}
class _DifficultyBtns extends StatelessWidget {
const _DifficultyBtns({
required this.difficulty,
required this.onDifficultyPressed,
required this.onDifficultyFocused,
});
final int difficulty;
final void Function(int difficulty) onDifficultyPressed;
final void Function(int? difficulty) onDifficultyFocused;
@override
Widget build(BuildContext context) {
return Column(
mainAxisSize: MainAxisSize.min,
children: [
_DifficultyBtn(
label: 'Casual',
selected: difficulty == 0,
onPressed: () => onDifficultyPressed(0),
onHover: (over) => onDifficultyFocused(over ? 0 : null),
),
_DifficultyBtn(
label: 'Normal',
selected: difficulty == 1,
onPressed: () => onDifficultyPressed(1),
onHover: (over) => onDifficultyFocused(over ? 1 : null),
),
_DifficultyBtn(
label: 'Hardcore',
selected: difficulty == 2,
onPressed: () => onDifficultyPressed(2),
onHover: (over) => onDifficultyFocused(over ? 2 : null),
),
const Gap(20),
],
);
}
}
class _DifficultyBtn extends StatelessWidget {
const _DifficultyBtn({
required this.selected,
required this.onPressed,
required this.onHover,
required this.label,
});
final String label;
final bool selected;
final VoidCallback onPressed;
final void Function(bool hasFocus) onHover;
@override
Widget build(BuildContext context) {
return FocusableControlBuilder(
onPressed: onPressed,
onHoverChanged: (_, state) => onHover.call(state.isHovered),
builder: (_, state) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: SizedBox(
width: 250,
height: 60,
child: Stack(
children: [
/// Bg with fill and outline
Container(
decoration: BoxDecoration(
color: const Color(0xFF00D1FF).withOpacity(.1),
border: Border.all(color: Colors.white, width: 5),
),
),
if (state.isHovered || state.isFocused) ...[
Container(
decoration: BoxDecoration(
color: const Color(0xFF00D1FF).withOpacity(.1),
),
),
],
/// cross-hairs (selected state)
if (selected) ...[
CenterLeft(
child: Image.asset(AssetPaths.titleSelectedLeft),
),
CenterRight(
child: Image.asset(AssetPaths.titleSelectedRight),
),
],
/// Label
Center(
child: Text(label.toUpperCase(), style: TextStyles.btn),
),
],
),
),
);
},
);
}
}
| codelabs/next-gen-ui/step_03_b/lib/title_screen/title_screen_ui.dart/0 | {
"file_path": "codelabs/next-gen-ui/step_03_b/lib/title_screen/title_screen_ui.dart",
"repo_id": "codelabs",
"token_count": 2580
} | 71 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/next-gen-ui/step_03_b/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/next-gen-ui/step_03_b/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 72 |
#import "GeneratedPluginRegistrant.h"
| codelabs/next-gen-ui/step_03_c/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/next-gen-ui/step_03_c/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 73 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/next-gen-ui/step_04_b/android/gradle.properties/0 | {
"file_path": "codelabs/next-gen-ui/step_04_b/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 74 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/next-gen-ui/step_05_b/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/next-gen-ui/step_05_b/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 75 |
#import "GeneratedPluginRegistrant.h"
| codelabs/next-gen-ui/step_06/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/next-gen-ui/step_06/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 76 |
# flutter_testing_codelab
This repository contains the code behind the codelab "How to test a Flutter app".
# Code steps
The naming of the step directories follows the steps of the associated code lab. The directories are as follows:
- `step_03` contains the code as at the end of Getting Started
- `step_04` contains the code as at the end of Build the app
- `step_05` contains the code as at the end of Unit testing the provider
- `step_06` contains the code as at the end of Widget testing
- `step_07` contains the code as at the end of Testing app UI and performance with Flutter Driver (Integration testing)
| codelabs/testing_codelab/README.md/0 | {
"file_path": "codelabs/testing_codelab/README.md",
"repo_id": "codelabs",
"token_count": 161
} | 77 |
// 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/material.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text('Hello World!'),
),
),
);
}
}
| codelabs/testing_codelab/step_03/lib/main.dart/0 | {
"file_path": "codelabs/testing_codelab/step_03/lib/main.dart",
"repo_id": "codelabs",
"token_count": 185
} | 78 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/testing_codelab/step_03/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/testing_codelab/step_03/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 79 |
#import "GeneratedPluginRegistrant.h"
| codelabs/testing_codelab/step_05/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/testing_codelab/step_05/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 80 |
include: ../../analysis_options.yaml
| codelabs/testing_codelab/step_07/analysis_options.yaml/0 | {
"file_path": "codelabs/testing_codelab/step_07/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 81 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/testing_codelab/step_07/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/testing_codelab/step_07/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 82 |
// 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/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:provider/provider.dart';
import 'package:testing_app/models/favorites.dart';
import 'package:testing_app/screens/favorites.dart';
late Favorites favoritesList;
Widget createFavoritesScreen() => ChangeNotifierProvider<Favorites>(
create: (context) {
favoritesList = Favorites();
return favoritesList;
},
child: const MaterialApp(
home: FavoritesPage(),
),
);
void addItems() {
for (var i = 0; i < 10; i += 2) {
favoritesList.add(i);
}
}
void main() {
group('Favorites Page Widget Tests', () {
testWidgets('Test if ListView shows up', (tester) async {
await tester.pumpWidget(createFavoritesScreen());
addItems();
await tester.pumpAndSettle();
expect(find.byType(ListView), findsOneWidget);
});
testWidgets('Testing Remove Button', (tester) async {
await tester.pumpWidget(createFavoritesScreen());
addItems();
await tester.pumpAndSettle();
var totalItems = tester.widgetList(find.byIcon(Icons.close)).length;
await tester.tap(find.byIcon(Icons.close).first);
await tester.pumpAndSettle();
expect(tester.widgetList(find.byIcon(Icons.close)).length,
lessThan(totalItems));
expect(find.text('Removed from favorites.'), findsOneWidget);
});
});
}
| codelabs/testing_codelab/step_08/test/favorites_test.dart/0 | {
"file_path": "codelabs/testing_codelab/step_08/test/favorites_test.dart",
"repo_id": "codelabs",
"token_count": 593
} | 83 |
#import "GeneratedPluginRegistrant.h"
| codelabs/tfagents-flutter/finished/frontend/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/tfagents-flutter/finished/frontend/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 84 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/tfagents-flutter/finished/frontend/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/finished/frontend/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 85 |
#import "GeneratedPluginRegistrant.h"
| codelabs/tfagents-flutter/step1/frontend/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/tfagents-flutter/step1/frontend/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 86 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/tfagents-flutter/step1/frontend/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/step1/frontend/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 87 |
import 'dart:convert';
import 'dart:io' show Platform;
import 'package:flutter/foundation.dart' show kIsWeb;
import 'package:http/http.dart' as http;
// TODO: add class definition for inputs
class TFAgentsAgent {
TFAgentsAgent();
Future<int> predict(List<List<double>> boardState) async {
String server = '';
if (!kIsWeb && Platform.isAndroid) {
// For Android emulator
server = '10.0.2.2';
} else {
// For iOS emulator, desktop and web platforms
server = '127.0.0.1';
}
// TODO: add code to predict next strike position
return 0;
}
}
| codelabs/tfagents-flutter/step2/frontend/lib/game_agent.dart/0 | {
"file_path": "codelabs/tfagents-flutter/step2/frontend/lib/game_agent.dart",
"repo_id": "codelabs",
"token_count": 224
} | 88 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/tfagents-flutter/step2/frontend/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/step2/frontend/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 89 |
#include "Generated.xcconfig"
| codelabs/tfagents-flutter/step3/frontend/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/step3/frontend/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 90 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/tfagents-flutter/step3/frontend/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/step3/frontend/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 91 |
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
| codelabs/tfagents-flutter/step5/frontend/android/gradle.properties/0 | {
"file_path": "codelabs/tfagents-flutter/step5/frontend/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 31
} | 92 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/tfrs-flutter/finished/frontend/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/finished/frontend/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 93 |
#include "Generated.xcconfig"
| codelabs/tfrs-flutter/step1/frontend/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/step1/frontend/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 94 |
include: ../../../analysis_options.yaml
analyzer:
errors:
unused_import: ignore
unused_field: ignore
linter:
rules: | codelabs/tfrs-flutter/step2/frontend/analysis_options.yaml/0 | {
"file_path": "codelabs/tfrs-flutter/step2/frontend/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 48
} | 95 |
#import "GeneratedPluginRegistrant.h"
| codelabs/tfrs-flutter/step3/frontend/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/tfrs-flutter/step3/frontend/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 96 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/tfrs-flutter/step3/frontend/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/step3/frontend/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 97 |
<jupyter_start><jupyter_code># Install Model maker
!pip install -q tflite-model-maker &> /dev/null
# Imports and check that we are using TF2.x
import numpy as np
import os
from tflite_model_maker import configs
from tflite_model_maker import ExportFormat
from tflite_model_maker import model_spec
from tflite_model_maker import text_classifier
from tflite_model_maker.text_classifier import DataLoader
import tensorflow as tf
assert tf.__version__.startswith('2')
tf.get_logger().setLevel('ERROR')
# Download the dataset as a CSV and store as data_file
data_file = tf.keras.utils.get_file(fname='comment-spam.csv', origin='https://storage.googleapis.com/laurencemoroney-blog.appspot.com/lmblog_comments.csv', extract=False)
# Use a model spec from model maker. Options are 'mobilebert_classifier', 'bert_classifier' and 'average_word_vec'
# The first 2 use the BERT model, which is accurate, but larger and slower to train
# Average Word Vec is kinda like transfer learning where there are pre-trained word weights
# and dictionaries
spec = model_spec.get('average_word_vec')
spec.num_words = 2000
spec.seq_len = 20
spec.wordvec_dim = 7
# Load the CSV using DataLoader.from_csv to make the training_data
data = DataLoader.from_csv(
filename=data_file,
text_column='commenttext',
label_column='spam',
model_spec=spec,
delimiter=',',
shuffle=True,
is_training=True)
train_data, test_data = data.split(0.9)
# Build the model
model = text_classifier.create(train_data, model_spec=spec, epochs=50, validation_data=test_data)
loss, accuracy = model.evaluate(train_data)
# This will export to SavedModel format with the model, vocabulary and labels.
model.export(export_dir='/mm_spam_savedmodel/', export_format=[ExportFormat.LABEL, ExportFormat.VOCAB, ExportFormat.SAVED_MODEL])
# You can find your files in colab by clicking the 'folder' tab to the left of
# this code window, and then navigating 'up' a directory to find the root
# directory listing -- and from there you should see /mm_spam_savedmodel/
# Rename the SavedModel subfolder to a version number
!mv /mm_spam_savedmodel/saved_model /mm_spam_savedmodel/123
!zip -r mm_spam_savedmodel.zip /mm_spam_savedmodel/
# Optional extra
# You can use this cell to export details for projector.tensorflow.org
# Where you can explore the embeddings that were learned for this dataset
embeddings = model.model.layers[0]
weights = embeddings.get_weights()[0]
tokenizer = model.model_spec.vocab
import io
out_v = io.open('vecs.tsv', 'w', encoding='utf-8')
out_m = io.open('meta.tsv', 'w', encoding='utf-8')
for word in tokenizer:
#word = tokenizer.decode([word_num])
value = tokenizer[word]
embeddings = weights[value]
out_m.write(word + "\n")
out_v.write('\t'.join([str(x) for x in embeddings]) + "\n")
out_v.close()
out_m.close()
try:
from google.colab import files
except ImportError:
pass
else:
files.download('vecs.tsv')
files.download('meta.tsv')<jupyter_output><empty_output> | codelabs/tfserving-flutter/codelab1/SpamCommentsModelMaker.ipynb/0 | {
"file_path": "codelabs/tfserving-flutter/codelab1/SpamCommentsModelMaker.ipynb",
"repo_id": "codelabs",
"token_count": 1023
} | 98 |
#include "Generated.xcconfig"
| codelabs/tfserving-flutter/codelab2/starter/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 99 |
///
// Generated code. Do not modify.
// source: tensorflow/core/example/example.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 exampleDescriptor instead')
const Example$json = const {
'1': 'Example',
'2': const [
const {
'1': 'features',
'3': 1,
'4': 1,
'5': 11,
'6': '.tensorflow.Features',
'10': 'features'
},
],
};
/// Descriptor for `Example`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List exampleDescriptor = $convert.base64Decode(
'CgdFeGFtcGxlEjAKCGZlYXR1cmVzGAEgASgLMhQudGVuc29yZmxvdy5GZWF0dXJlc1IIZmVhdHVyZXM=');
@$core.Deprecated('Use sequenceExampleDescriptor instead')
const SequenceExample$json = const {
'1': 'SequenceExample',
'2': const [
const {
'1': 'context',
'3': 1,
'4': 1,
'5': 11,
'6': '.tensorflow.Features',
'10': 'context'
},
const {
'1': 'feature_lists',
'3': 2,
'4': 1,
'5': 11,
'6': '.tensorflow.FeatureLists',
'10': 'featureLists'
},
],
};
/// Descriptor for `SequenceExample`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List sequenceExampleDescriptor = $convert.base64Decode(
'Cg9TZXF1ZW5jZUV4YW1wbGUSLgoHY29udGV4dBgBIAEoCzIULnRlbnNvcmZsb3cuRmVhdHVyZXNSB2NvbnRleHQSPQoNZmVhdHVyZV9saXN0cxgCIAEoCzIYLnRlbnNvcmZsb3cuRmVhdHVyZUxpc3RzUgxmZWF0dXJlTGlzdHM=');
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/example/example.pbjson.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/example/example.pbjson.dart",
"repo_id": "codelabs",
"token_count": 835
} | 100 |
///
// Generated code. Do not modify.
// source: tensorflow/core/framework/node_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
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'full_type.pb.dart' as $0;
import 'attr_value.pb.dart' as $1;
class NodeDef_ExperimentalDebugInfo extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'NodeDef.ExperimentalDebugInfo',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..pPS(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'originalNodeNames')
..pPS(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'originalFuncNames')
..hasRequiredFields = false;
NodeDef_ExperimentalDebugInfo._() : super();
factory NodeDef_ExperimentalDebugInfo({
$core.Iterable<$core.String>? originalNodeNames,
$core.Iterable<$core.String>? originalFuncNames,
}) {
final _result = create();
if (originalNodeNames != null) {
_result.originalNodeNames.addAll(originalNodeNames);
}
if (originalFuncNames != null) {
_result.originalFuncNames.addAll(originalFuncNames);
}
return _result;
}
factory NodeDef_ExperimentalDebugInfo.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory NodeDef_ExperimentalDebugInfo.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')
NodeDef_ExperimentalDebugInfo clone() =>
NodeDef_ExperimentalDebugInfo()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
NodeDef_ExperimentalDebugInfo copyWith(
void Function(NodeDef_ExperimentalDebugInfo) updates) =>
super.copyWith(
(message) => updates(message as NodeDef_ExperimentalDebugInfo))
as NodeDef_ExperimentalDebugInfo; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static NodeDef_ExperimentalDebugInfo create() =>
NodeDef_ExperimentalDebugInfo._();
NodeDef_ExperimentalDebugInfo createEmptyInstance() => create();
static $pb.PbList<NodeDef_ExperimentalDebugInfo> createRepeated() =>
$pb.PbList<NodeDef_ExperimentalDebugInfo>();
@$core.pragma('dart2js:noInline')
static NodeDef_ExperimentalDebugInfo getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<NodeDef_ExperimentalDebugInfo>(create);
static NodeDef_ExperimentalDebugInfo? _defaultInstance;
@$pb.TagNumber(1)
$core.List<$core.String> get originalNodeNames => $_getList(0);
@$pb.TagNumber(2)
$core.List<$core.String> get originalFuncNames => $_getList(1);
}
class NodeDef extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'NodeDef',
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')
? ''
: 'op')
..pPS(
3,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'input')
..aOS(
4,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'device')
..m<$core.String, $1.AttrValue>(
5,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'attr',
entryClassName: 'NodeDef.AttrEntry',
keyFieldType: $pb.PbFieldType.OS,
valueFieldType: $pb.PbFieldType.OM,
valueCreator: $1.AttrValue.create,
packageName: const $pb.PackageName('tensorflow'))
..aOM<NodeDef_ExperimentalDebugInfo>(
6,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'experimentalDebugInfo',
subBuilder: NodeDef_ExperimentalDebugInfo.create)
..aOM<$0.FullTypeDef>(
7,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'experimentalType',
subBuilder: $0.FullTypeDef.create)
..hasRequiredFields = false;
NodeDef._() : super();
factory NodeDef({
$core.String? name,
$core.String? op,
$core.Iterable<$core.String>? input,
$core.String? device,
$core.Map<$core.String, $1.AttrValue>? attr,
NodeDef_ExperimentalDebugInfo? experimentalDebugInfo,
$0.FullTypeDef? experimentalType,
}) {
final _result = create();
if (name != null) {
_result.name = name;
}
if (op != null) {
_result.op = op;
}
if (input != null) {
_result.input.addAll(input);
}
if (device != null) {
_result.device = device;
}
if (attr != null) {
_result.attr.addAll(attr);
}
if (experimentalDebugInfo != null) {
_result.experimentalDebugInfo = experimentalDebugInfo;
}
if (experimentalType != null) {
_result.experimentalType = experimentalType;
}
return _result;
}
factory NodeDef.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory NodeDef.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')
NodeDef clone() => NodeDef()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
NodeDef copyWith(void Function(NodeDef) updates) =>
super.copyWith((message) => updates(message as NodeDef))
as NodeDef; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static NodeDef create() => NodeDef._();
NodeDef createEmptyInstance() => create();
static $pb.PbList<NodeDef> createRepeated() => $pb.PbList<NodeDef>();
@$core.pragma('dart2js:noInline')
static NodeDef getDefault() =>
_defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<NodeDef>(create);
static NodeDef? _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 op => $_getSZ(1);
@$pb.TagNumber(2)
set op($core.String v) {
$_setString(1, v);
}
@$pb.TagNumber(2)
$core.bool hasOp() => $_has(1);
@$pb.TagNumber(2)
void clearOp() => clearField(2);
@$pb.TagNumber(3)
$core.List<$core.String> get input => $_getList(2);
@$pb.TagNumber(4)
$core.String get device => $_getSZ(3);
@$pb.TagNumber(4)
set device($core.String v) {
$_setString(3, v);
}
@$pb.TagNumber(4)
$core.bool hasDevice() => $_has(3);
@$pb.TagNumber(4)
void clearDevice() => clearField(4);
@$pb.TagNumber(5)
$core.Map<$core.String, $1.AttrValue> get attr => $_getMap(4);
@$pb.TagNumber(6)
NodeDef_ExperimentalDebugInfo get experimentalDebugInfo => $_getN(5);
@$pb.TagNumber(6)
set experimentalDebugInfo(NodeDef_ExperimentalDebugInfo v) {
setField(6, v);
}
@$pb.TagNumber(6)
$core.bool hasExperimentalDebugInfo() => $_has(5);
@$pb.TagNumber(6)
void clearExperimentalDebugInfo() => clearField(6);
@$pb.TagNumber(6)
NodeDef_ExperimentalDebugInfo ensureExperimentalDebugInfo() => $_ensure(5);
@$pb.TagNumber(7)
$0.FullTypeDef get experimentalType => $_getN(6);
@$pb.TagNumber(7)
set experimentalType($0.FullTypeDef v) {
setField(7, v);
}
@$pb.TagNumber(7)
$core.bool hasExperimentalType() => $_has(6);
@$pb.TagNumber(7)
void clearExperimentalType() => clearField(7);
@$pb.TagNumber(7)
$0.FullTypeDef ensureExperimentalType() => $_ensure(6);
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/node_def.pb.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/node_def.pb.dart",
"repo_id": "codelabs",
"token_count": 3853
} | 101 |
///
// Generated code. Do not modify.
// source: tensorflow/core/framework/types.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
// ignore_for_file: UNDEFINED_SHOWN_NAME
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
class DataType extends $pb.ProtobufEnum {
static const DataType DT_INVALID = DataType._(
0,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_INVALID');
static const DataType DT_FLOAT = DataType._(
1,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_FLOAT');
static const DataType DT_DOUBLE = DataType._(
2,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_DOUBLE');
static const DataType DT_INT32 = DataType._(
3,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_INT32');
static const DataType DT_UINT8 = DataType._(
4,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_UINT8');
static const DataType DT_INT16 = DataType._(
5,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_INT16');
static const DataType DT_INT8 = DataType._(
6,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_INT8');
static const DataType DT_STRING = DataType._(
7,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_STRING');
static const DataType DT_COMPLEX64 = DataType._(
8,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_COMPLEX64');
static const DataType DT_INT64 = DataType._(
9,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_INT64');
static const DataType DT_BOOL = DataType._(
10,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_BOOL');
static const DataType DT_QINT8 = DataType._(
11,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_QINT8');
static const DataType DT_QUINT8 = DataType._(
12,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_QUINT8');
static const DataType DT_QINT32 = DataType._(
13,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_QINT32');
static const DataType DT_BFLOAT16 = DataType._(
14,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_BFLOAT16');
static const DataType DT_QINT16 = DataType._(
15,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_QINT16');
static const DataType DT_QUINT16 = DataType._(
16,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_QUINT16');
static const DataType DT_UINT16 = DataType._(
17,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_UINT16');
static const DataType DT_COMPLEX128 = DataType._(
18,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_COMPLEX128');
static const DataType DT_HALF = DataType._(
19,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_HALF');
static const DataType DT_RESOURCE = DataType._(
20,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_RESOURCE');
static const DataType DT_VARIANT = DataType._(
21,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_VARIANT');
static const DataType DT_UINT32 = DataType._(
22,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_UINT32');
static const DataType DT_UINT64 = DataType._(
23,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_UINT64');
static const DataType DT_FLOAT_REF = DataType._(
101,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_FLOAT_REF');
static const DataType DT_DOUBLE_REF = DataType._(
102,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_DOUBLE_REF');
static const DataType DT_INT32_REF = DataType._(
103,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_INT32_REF');
static const DataType DT_UINT8_REF = DataType._(
104,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_UINT8_REF');
static const DataType DT_INT16_REF = DataType._(
105,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_INT16_REF');
static const DataType DT_INT8_REF = DataType._(
106,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_INT8_REF');
static const DataType DT_STRING_REF = DataType._(
107,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_STRING_REF');
static const DataType DT_COMPLEX64_REF = DataType._(
108,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_COMPLEX64_REF');
static const DataType DT_INT64_REF = DataType._(
109,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_INT64_REF');
static const DataType DT_BOOL_REF = DataType._(
110,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_BOOL_REF');
static const DataType DT_QINT8_REF = DataType._(
111,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_QINT8_REF');
static const DataType DT_QUINT8_REF = DataType._(
112,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_QUINT8_REF');
static const DataType DT_QINT32_REF = DataType._(
113,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_QINT32_REF');
static const DataType DT_BFLOAT16_REF = DataType._(
114,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_BFLOAT16_REF');
static const DataType DT_QINT16_REF = DataType._(
115,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_QINT16_REF');
static const DataType DT_QUINT16_REF = DataType._(
116,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_QUINT16_REF');
static const DataType DT_UINT16_REF = DataType._(
117,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_UINT16_REF');
static const DataType DT_COMPLEX128_REF = DataType._(
118,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_COMPLEX128_REF');
static const DataType DT_HALF_REF = DataType._(
119,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_HALF_REF');
static const DataType DT_RESOURCE_REF = DataType._(
120,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_RESOURCE_REF');
static const DataType DT_VARIANT_REF = DataType._(
121,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_VARIANT_REF');
static const DataType DT_UINT32_REF = DataType._(
122,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_UINT32_REF');
static const DataType DT_UINT64_REF = DataType._(
123,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'DT_UINT64_REF');
static const $core.List<DataType> values = <DataType>[
DT_INVALID,
DT_FLOAT,
DT_DOUBLE,
DT_INT32,
DT_UINT8,
DT_INT16,
DT_INT8,
DT_STRING,
DT_COMPLEX64,
DT_INT64,
DT_BOOL,
DT_QINT8,
DT_QUINT8,
DT_QINT32,
DT_BFLOAT16,
DT_QINT16,
DT_QUINT16,
DT_UINT16,
DT_COMPLEX128,
DT_HALF,
DT_RESOURCE,
DT_VARIANT,
DT_UINT32,
DT_UINT64,
DT_FLOAT_REF,
DT_DOUBLE_REF,
DT_INT32_REF,
DT_UINT8_REF,
DT_INT16_REF,
DT_INT8_REF,
DT_STRING_REF,
DT_COMPLEX64_REF,
DT_INT64_REF,
DT_BOOL_REF,
DT_QINT8_REF,
DT_QUINT8_REF,
DT_QINT32_REF,
DT_BFLOAT16_REF,
DT_QINT16_REF,
DT_QUINT16_REF,
DT_UINT16_REF,
DT_COMPLEX128_REF,
DT_HALF_REF,
DT_RESOURCE_REF,
DT_VARIANT_REF,
DT_UINT32_REF,
DT_UINT64_REF,
];
static final $core.Map<$core.int, DataType> _byValue =
$pb.ProtobufEnum.initByValue(values);
static DataType? valueOf($core.int value) => _byValue[value];
const DataType._($core.int v, $core.String n) : super(v, n);
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/types.pbenum.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/types.pbenum.dart",
"repo_id": "codelabs",
"token_count": 4629
} | 102 |
///
// Generated code. Do not modify.
// source: tensorflow/core/protobuf/saver.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 saverDefDescriptor instead')
const SaverDef$json = const {
'1': 'SaverDef',
'2': const [
const {
'1': 'filename_tensor_name',
'3': 1,
'4': 1,
'5': 9,
'10': 'filenameTensorName'
},
const {
'1': 'save_tensor_name',
'3': 2,
'4': 1,
'5': 9,
'10': 'saveTensorName'
},
const {
'1': 'restore_op_name',
'3': 3,
'4': 1,
'5': 9,
'10': 'restoreOpName'
},
const {'1': 'max_to_keep', '3': 4, '4': 1, '5': 5, '10': 'maxToKeep'},
const {'1': 'sharded', '3': 5, '4': 1, '5': 8, '10': 'sharded'},
const {
'1': 'keep_checkpoint_every_n_hours',
'3': 6,
'4': 1,
'5': 2,
'10': 'keepCheckpointEveryNHours'
},
const {
'1': 'version',
'3': 7,
'4': 1,
'5': 14,
'6': '.tensorflow.SaverDef.CheckpointFormatVersion',
'10': 'version'
},
],
'4': const [SaverDef_CheckpointFormatVersion$json],
};
@$core.Deprecated('Use saverDefDescriptor instead')
const SaverDef_CheckpointFormatVersion$json = const {
'1': 'CheckpointFormatVersion',
'2': const [
const {'1': 'LEGACY', '2': 0},
const {'1': 'V1', '2': 1},
const {'1': 'V2', '2': 2},
],
};
/// Descriptor for `SaverDef`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List saverDefDescriptor = $convert.base64Decode(
'CghTYXZlckRlZhIwChRmaWxlbmFtZV90ZW5zb3JfbmFtZRgBIAEoCVISZmlsZW5hbWVUZW5zb3JOYW1lEigKEHNhdmVfdGVuc29yX25hbWUYAiABKAlSDnNhdmVUZW5zb3JOYW1lEiYKD3Jlc3RvcmVfb3BfbmFtZRgDIAEoCVINcmVzdG9yZU9wTmFtZRIeCgttYXhfdG9fa2VlcBgEIAEoBVIJbWF4VG9LZWVwEhgKB3NoYXJkZWQYBSABKAhSB3NoYXJkZWQSQAoda2VlcF9jaGVja3BvaW50X2V2ZXJ5X25faG91cnMYBiABKAJSGWtlZXBDaGVja3BvaW50RXZlcnlOSG91cnMSRgoHdmVyc2lvbhgHIAEoDjIsLnRlbnNvcmZsb3cuU2F2ZXJEZWYuQ2hlY2twb2ludEZvcm1hdFZlcnNpb25SB3ZlcnNpb24iNQoXQ2hlY2twb2ludEZvcm1hdFZlcnNpb24SCgoGTEVHQUNZEAASBgoCVjEQARIGCgJWMhAC');
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/protobuf/saver.pbjson.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/protobuf/saver.pbjson.dart",
"repo_id": "codelabs",
"token_count": 1287
} | 103 |
///
// Generated code. Do not modify.
// source: tensorflow_serving/apis/input.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 '../../tensorflow/core/example/example.pb.dart' as $0;
class ExampleList extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'ExampleList',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..pc<$0.Example>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'examples',
$pb.PbFieldType.PM,
subBuilder: $0.Example.create)
..hasRequiredFields = false;
ExampleList._() : super();
factory ExampleList({
$core.Iterable<$0.Example>? examples,
}) {
final _result = create();
if (examples != null) {
_result.examples.addAll(examples);
}
return _result;
}
factory ExampleList.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory ExampleList.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')
ExampleList clone() => ExampleList()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ExampleList copyWith(void Function(ExampleList) updates) =>
super.copyWith((message) => updates(message as ExampleList))
as ExampleList; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ExampleList create() => ExampleList._();
ExampleList createEmptyInstance() => create();
static $pb.PbList<ExampleList> createRepeated() => $pb.PbList<ExampleList>();
@$core.pragma('dart2js:noInline')
static ExampleList getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<ExampleList>(create);
static ExampleList? _defaultInstance;
@$pb.TagNumber(1)
$core.List<$0.Example> get examples => $_getList(0);
}
class ExampleListWithContext extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'ExampleListWithContext',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..pc<$0.Example>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'examples',
$pb.PbFieldType.PM,
subBuilder: $0.Example.create)
..aOM<$0.Example>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'context',
subBuilder: $0.Example.create)
..hasRequiredFields = false;
ExampleListWithContext._() : super();
factory ExampleListWithContext({
$core.Iterable<$0.Example>? examples,
$0.Example? context,
}) {
final _result = create();
if (examples != null) {
_result.examples.addAll(examples);
}
if (context != null) {
_result.context = context;
}
return _result;
}
factory ExampleListWithContext.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory ExampleListWithContext.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')
ExampleListWithContext clone() =>
ExampleListWithContext()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ExampleListWithContext copyWith(
void Function(ExampleListWithContext) updates) =>
super.copyWith((message) => updates(message as ExampleListWithContext))
as ExampleListWithContext; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ExampleListWithContext create() => ExampleListWithContext._();
ExampleListWithContext createEmptyInstance() => create();
static $pb.PbList<ExampleListWithContext> createRepeated() =>
$pb.PbList<ExampleListWithContext>();
@$core.pragma('dart2js:noInline')
static ExampleListWithContext getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<ExampleListWithContext>(create);
static ExampleListWithContext? _defaultInstance;
@$pb.TagNumber(1)
$core.List<$0.Example> get examples => $_getList(0);
@$pb.TagNumber(2)
$0.Example get context => $_getN(1);
@$pb.TagNumber(2)
set context($0.Example v) {
setField(2, v);
}
@$pb.TagNumber(2)
$core.bool hasContext() => $_has(1);
@$pb.TagNumber(2)
void clearContext() => clearField(2);
@$pb.TagNumber(2)
$0.Example ensureContext() => $_ensure(1);
}
enum Input_Kind { exampleList, exampleListWithContext, notSet }
class Input extends $pb.GeneratedMessage {
static const $core.Map<$core.int, Input_Kind> _Input_KindByTag = {
1: Input_Kind.exampleList,
2: Input_Kind.exampleListWithContext,
0: Input_Kind.notSet
};
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'Input',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..oo(0, [1, 2])
..aOM<ExampleList>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'exampleList',
subBuilder: ExampleList.create)
..aOM<ExampleListWithContext>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'exampleListWithContext',
subBuilder: ExampleListWithContext.create)
..hasRequiredFields = false;
Input._() : super();
factory Input({
ExampleList? exampleList,
ExampleListWithContext? exampleListWithContext,
}) {
final _result = create();
if (exampleList != null) {
_result.exampleList = exampleList;
}
if (exampleListWithContext != null) {
_result.exampleListWithContext = exampleListWithContext;
}
return _result;
}
factory Input.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory Input.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')
Input clone() => Input()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
Input copyWith(void Function(Input) updates) =>
super.copyWith((message) => updates(message as Input))
as Input; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static Input create() => Input._();
Input createEmptyInstance() => create();
static $pb.PbList<Input> createRepeated() => $pb.PbList<Input>();
@$core.pragma('dart2js:noInline')
static Input getDefault() =>
_defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Input>(create);
static Input? _defaultInstance;
Input_Kind whichKind() => _Input_KindByTag[$_whichOneof(0)]!;
void clearKind() => clearField($_whichOneof(0));
@$pb.TagNumber(1)
ExampleList get exampleList => $_getN(0);
@$pb.TagNumber(1)
set exampleList(ExampleList v) {
setField(1, v);
}
@$pb.TagNumber(1)
$core.bool hasExampleList() => $_has(0);
@$pb.TagNumber(1)
void clearExampleList() => clearField(1);
@$pb.TagNumber(1)
ExampleList ensureExampleList() => $_ensure(0);
@$pb.TagNumber(2)
ExampleListWithContext get exampleListWithContext => $_getN(1);
@$pb.TagNumber(2)
set exampleListWithContext(ExampleListWithContext v) {
setField(2, v);
}
@$pb.TagNumber(2)
$core.bool hasExampleListWithContext() => $_has(1);
@$pb.TagNumber(2)
void clearExampleListWithContext() => clearField(2);
@$pb.TagNumber(2)
ExampleListWithContext ensureExampleListWithContext() => $_ensure(1);
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/input.pb.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/input.pb.dart",
"repo_id": "codelabs",
"token_count": 3756
} | 104 |
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
syntax = "proto3";
package google.protobuf;
option csharp_namespace = "Google.Protobuf.WellKnownTypes";
option go_package = "google.golang.org/protobuf/types/known/anypb";
option java_package = "com.google.protobuf";
option java_outer_classname = "AnyProto";
option java_multiple_files = true;
option objc_class_prefix = "GPB";
// `Any` contains an arbitrary serialized protocol buffer message along with a
// URL that describes the type of the serialized message.
//
// Protobuf library provides support to pack/unpack Any values in the form
// of utility functions or additional generated methods of the Any type.
//
// Example 1: Pack and unpack a message in C++.
//
// Foo foo = ...;
// Any any;
// any.PackFrom(foo);
// ...
// if (any.UnpackTo(&foo)) {
// ...
// }
//
// Example 2: Pack and unpack a message in Java.
//
// Foo foo = ...;
// Any any = Any.pack(foo);
// ...
// if (any.is(Foo.class)) {
// foo = any.unpack(Foo.class);
// }
//
// Example 3: Pack and unpack a message in Python.
//
// foo = Foo(...)
// any = Any()
// any.Pack(foo)
// ...
// if any.Is(Foo.DESCRIPTOR):
// any.Unpack(foo)
// ...
//
// Example 4: Pack and unpack a message in Go
//
// foo := &pb.Foo{...}
// any, err := anypb.New(foo)
// if err != nil {
// ...
// }
// ...
// foo := &pb.Foo{}
// if err := any.UnmarshalTo(foo); err != nil {
// ...
// }
//
// The pack methods provided by protobuf library will by default use
// 'type.googleapis.com/full.type.name' as the type URL and the unpack
// methods only use the fully qualified type name after the last '/'
// in the type URL, for example "foo.bar.com/x/y.z" will yield type
// name "y.z".
//
//
// JSON
//
// The JSON representation of an `Any` value uses the regular
// representation of the deserialized, embedded message, with an
// additional field `@type` which contains the type URL. Example:
//
// package google.profile;
// message Person {
// string first_name = 1;
// string last_name = 2;
// }
//
// {
// "@type": "type.googleapis.com/google.profile.Person",
// "firstName": <string>,
// "lastName": <string>
// }
//
// If the embedded message type is well-known and has a custom JSON
// representation, that representation will be embedded adding a field
// `value` which holds the custom JSON in addition to the `@type`
// field. Example (for message [google.protobuf.Duration][]):
//
// {
// "@type": "type.googleapis.com/google.protobuf.Duration",
// "value": "1.212s"
// }
//
message Any {
// A URL/resource name that uniquely identifies the type of the serialized
// protocol buffer message. This string must contain at least
// one "/" character. The last segment of the URL's path must represent
// the fully qualified name of the type (as in
// `path/google.protobuf.Duration`). The name should be in a canonical form
// (e.g., leading "." is not accepted).
//
// In practice, teams usually precompile into the binary all types that they
// expect it to use in the context of Any. However, for URLs which use the
// scheme `http`, `https`, or no scheme, one can optionally set up a type
// server that maps type URLs to message definitions as follows:
//
// * If no scheme is provided, `https` is assumed.
// * An HTTP GET on the URL must yield a [google.protobuf.Type][]
// value in binary format, or produce an error.
// * Applications are allowed to cache lookup results based on the
// URL, or have them precompiled into a binary to avoid any
// lookup. Therefore, binary compatibility needs to be preserved
// on changes to types. (Use versioned type names to manage
// breaking changes.)
//
// Note: this functionality is not currently available in the official
// protobuf release, and it is not used for type URLs beginning with
// type.googleapis.com.
//
// Schemes other than `http`, `https` (or the empty scheme) might be
// used with implementation specific semantics.
//
string type_url = 1;
// Must be a valid serialized protocol buffer of the above specified type.
bytes value = 2;
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/google/protobuf/any.proto/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/google/protobuf/any.proto",
"repo_id": "codelabs",
"token_count": 1900
} | 105 |
syntax = "proto3";
package tensorflow;
import "google/protobuf/any.proto";
import "tensorflow/core/framework/graph.proto";
import "tensorflow/core/framework/op_def.proto";
import "tensorflow/core/framework/tensor_shape.proto";
import "tensorflow/core/framework/types.proto";
import "tensorflow/core/protobuf/saved_object_graph.proto";
import "tensorflow/core/protobuf/saver.proto";
import "tensorflow/core/protobuf/struct.proto";
option cc_enable_arenas = true;
option java_outer_classname = "MetaGraphProtos";
option java_multiple_files = true;
option java_package = "org.tensorflow.framework";
option go_package = "github.com/tensorflow/tensorflow/tensorflow/go/core/protobuf/for_core_protos_go_proto";
// NOTE: This protocol buffer is evolving, and will go through revisions in the
// coming months.
//
// Protocol buffer containing the following which are necessary to restart
// training, run inference. It can be used to serialize/de-serialize memory
// objects necessary for running computation in a graph when crossing the
// process boundary. It can be used for long term storage of graphs,
// cross-language execution of graphs, etc.
// MetaInfoDef
// GraphDef
// SaverDef
// CollectionDef
// TensorInfo
// SignatureDef
message MetaGraphDef {
// Meta information regarding the graph to be exported. To be used by users
// of this protocol buffer to encode information regarding their meta graph.
message MetaInfoDef {
// User specified Version string. Can be the name of the model and revision,
// steps this model has been trained to, etc.
string meta_graph_version = 1;
// A copy of the OpDefs used by the producer of this graph_def.
// Descriptions and Ops not used in graph_def are stripped out.
OpList stripped_op_list = 2;
// A serialized protobuf. Can be the time this meta graph is created, or
// modified, or name of the model.
google.protobuf.Any any_info = 3;
// User supplied tag(s) on the meta_graph and included graph_def.
//
// MetaGraphDefs should be tagged with their capabilities or use-cases.
// Examples: "train", "serve", "gpu", "tpu", etc.
// These tags enable loaders to access the MetaGraph(s) appropriate for a
// specific use-case or runtime environment.
repeated string tags = 4;
// The __version__ string of the tensorflow build used to write this graph.
// This will be populated by the framework, which will overwrite any user
// supplied value.
string tensorflow_version = 5;
// The __git_version__ string of the tensorflow build used to write this
// graph. This will be populated by the framework, which will overwrite any
// user supplied value.
string tensorflow_git_version = 6;
// A flag to denote whether default-valued attrs have been stripped from
// the nodes in this graph_def.
bool stripped_default_attrs = 7;
// FunctionDef name to aliases mapping.
map<string, string> function_aliases = 8;
}
MetaInfoDef meta_info_def = 1;
// GraphDef.
GraphDef graph_def = 2;
// SaverDef.
SaverDef saver_def = 3;
// collection_def: Map from collection name to collections.
// See CollectionDef section for details.
map<string, CollectionDef> collection_def = 4;
// signature_def: Map from user supplied key for a signature to a single
// SignatureDef.
map<string, SignatureDef> signature_def = 5;
// Asset file def to be used with the defined graph.
repeated AssetFileDef asset_file_def = 6;
// Extra information about the structure of functions and stateful objects.
SavedObjectGraph object_graph_def = 7;
}
// CollectionDef should cover most collections.
// To add a user-defined collection, do one of the following:
// 1. For simple data types, such as string, int, float:
// tf.add_to_collection("your_collection_name", your_simple_value)
// strings will be stored as bytes_list.
//
// 2. For Protobuf types, there are three ways to add them:
// 1) tf.add_to_collection("your_collection_name",
// your_proto.SerializeToString())
//
// collection_def {
// key: "user_defined_bytes_collection"
// value {
// bytes_list {
// value: "queue_name: \"test_queue\"\n"
// }
// }
// }
//
// or
//
// 2) tf.add_to_collection("your_collection_name", str(your_proto))
//
// collection_def {
// key: "user_defined_string_collection"
// value {
// bytes_list {
// value: "\n\ntest_queue"
// }
// }
// }
//
// or
//
// 3) any_buf = any_pb2.Any()
// tf.add_to_collection("your_collection_name",
// any_buf.Pack(your_proto))
//
// collection_def {
// key: "user_defined_any_collection"
// value {
// any_list {
// value {
// type_url: "type.googleapis.com/tensorflow.QueueRunnerDef"
// value: "\n\ntest_queue"
// }
// }
// }
// }
//
// 3. For Python objects, implement to_proto() and from_proto(), and register
// them in the following manner:
// ops.register_proto_function("your_collection_name",
// proto_type,
// to_proto=YourPythonObject.to_proto,
// from_proto=YourPythonObject.from_proto)
// These functions will be invoked to serialize and de-serialize the
// collection. For example,
// ops.register_proto_function(ops.GraphKeys.GLOBAL_VARIABLES,
// proto_type=variable_pb2.VariableDef,
// to_proto=Variable.to_proto,
// from_proto=Variable.from_proto)
message CollectionDef {
// NodeList is used for collecting nodes in graph. For example
// collection_def {
// key: "summaries"
// value {
// node_list {
// value: "input_producer/ScalarSummary:0"
// value: "shuffle_batch/ScalarSummary:0"
// value: "ImageSummary:0"
// }
// }
message NodeList {
repeated string value = 1;
}
// BytesList is used for collecting strings and serialized protobufs. For
// example:
// collection_def {
// key: "trainable_variables"
// value {
// bytes_list {
// value: "\n\017conv1/weights:0\022\024conv1/weights/Assign
// \032\024conv1/weights/read:0"
// value: "\n\016conv1/biases:0\022\023conv1/biases/Assign\032
// \023conv1/biases/read:0"
// }
// }
// }
message BytesList {
repeated bytes value = 1;
}
// Int64List is used for collecting int, int64 and long values.
message Int64List {
repeated int64 value = 1 [packed = true];
}
// FloatList is used for collecting float values.
message FloatList {
repeated float value = 1 [packed = true];
}
// AnyList is used for collecting Any protos.
message AnyList {
repeated google.protobuf.Any value = 1;
}
oneof kind {
NodeList node_list = 1;
BytesList bytes_list = 2;
Int64List int64_list = 3;
FloatList float_list = 4;
AnyList any_list = 5;
}
}
// Information about a Tensor necessary for feeding or retrieval.
message TensorInfo {
// For sparse tensors, The COO encoding stores a triple of values, indices,
// and shape.
message CooSparse {
// The shape of the values Tensor is [?]. Its dtype must be the dtype of
// the SparseTensor as a whole, given in the enclosing TensorInfo.
string values_tensor_name = 1;
// The indices Tensor must have dtype int64 and shape [?, ?].
string indices_tensor_name = 2;
// The dynamic logical shape represented by the SparseTensor is recorded in
// the Tensor referenced here. It must have dtype int64 and shape [?].
string dense_shape_tensor_name = 3;
}
// Generic encoding for composite tensors.
message CompositeTensor {
// The serialized TypeSpec for the composite tensor.
TypeSpecProto type_spec = 1;
// A TensorInfo for each flattened component tensor.
repeated TensorInfo components = 2;
}
oneof encoding {
// For dense `Tensor`s, the name of the tensor in the graph.
string name = 1;
// There are many possible encodings of sparse matrices
// (https://en.wikipedia.org/wiki/Sparse_matrix). Currently, TensorFlow
// uses only the COO encoding. This is supported and documented in the
// SparseTensor Python class.
CooSparse coo_sparse = 4;
// Generic encoding for CompositeTensors.
CompositeTensor composite_tensor = 5;
}
DataType dtype = 2;
// The static shape should be recorded here, to the extent that it can
// be known in advance. In the case of a SparseTensor, this field describes
// the logical shape of the represented tensor (aka dense_shape).
TensorShapeProto tensor_shape = 3;
}
// SignatureDef defines the signature of a computation supported by a TensorFlow
// graph.
//
// For example, a model with two loss computations, sharing a single input,
// might have the following signature_def map, in a MetaGraphDef message.
//
// Note that across the two SignatureDefs "loss_A" and "loss_B", the input key,
// output key, and method_name are identical, and will be used by system(s) that
// implement or rely upon this particular loss method. The output tensor names
// differ, demonstrating how different outputs can exist for the same method.
//
// signature_def {
// key: "loss_A"
// value {
// inputs {
// key: "input"
// value {
// name: "input:0"
// dtype: DT_STRING
// tensor_shape: ...
// }
// }
// outputs {
// key: "loss_output"
// value {
// name: "loss_output_A:0"
// dtype: DT_FLOAT
// tensor_shape: ...
// }
// }
// method_name: "some/package/compute_loss"
// }
// ...
// }
// signature_def {
// key: "loss_B"
// value {
// inputs {
// key: "input"
// value {
// name: "input:0"
// dtype: DT_STRING
// tensor_shape: ...
// }
// }
// outputs {
// key: "loss_output"
// value {
// name: "loss_output_B:0"
// dtype: DT_FLOAT
// tensor_shape: ...
// }
// }
// method_name: "some/package/compute_loss"
// }
// ...
// }
message SignatureDef {
// Named input parameters.
map<string, TensorInfo> inputs = 1;
// Named output parameters.
map<string, TensorInfo> outputs = 2;
// Extensible method_name information enabling third-party users to mark a
// SignatureDef as supporting a particular method. This enables producers and
// consumers of SignatureDefs, e.g. a model definition library and a serving
// library to have a clear hand-off regarding the semantics of a computation.
//
// Note that multiple SignatureDefs in a single MetaGraphDef may have the same
// method_name. This is commonly used to support multi-headed computation,
// where a single graph computation may return multiple results.
string method_name = 3;
}
// An asset file def for a single file or a set of sharded files with the same
// name.
message AssetFileDef {
// The tensor to bind the asset filename to.
TensorInfo tensor_info = 1;
// The filename within an assets directory. Note: does not include the path
// prefix, i.e. directories. For an asset at /tmp/path/vocab.txt, the filename
// would be "vocab.txt".
string filename = 2;
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/protobuf/meta_graph.proto/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/protobuf/meta_graph.proto",
"repo_id": "codelabs",
"token_count": 4218
} | 106 |
## 1.0.0
- Initial version.
| codelabs/tooling/claat_export_images/CHANGELOG.md/0 | {
"file_path": "codelabs/tooling/claat_export_images/CHANGELOG.md",
"repo_id": "codelabs",
"token_count": 13
} | 107 |
{
"body": {
"content": [
{
"endIndex": 1,
"sectionBreak": {
"sectionStyle": {
"columnSeparatorStyle": "NONE",
"contentDirection": "LEFT_TO_RIGHT",
"sectionType": "CONTINUOUS"
}
}
},
{
"endIndex": 27,
"paragraph": {
"elements": [
{
"endIndex": 27,
"startIndex": 1,
"textRun": {
"content": "How to test 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": 28,
"paragraph": {
"elements": [
{
"endIndex": 28,
"startIndex": 27,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 27
},
{
"endIndex": 58,
"paragraph": {
"elements": [
{
"endIndex": 57,
"startIndex": 28,
"textRun": {
"content": "Last update: 5/20/2021, abd99",
"textStyle": {
"fontSize": {
"magnitude": 8.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 58,
"startIndex": 57,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"alignment": "END",
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 28
},
{
"endIndex": 343,
"startIndex": 58,
"table": {
"columns": 2,
"rows": 7,
"tableRows": [
{
"endIndex": 131,
"startIndex": 59,
"tableCells": [
{
"content": [
{
"endIndex": 69,
"paragraph": {
"elements": [
{
"endIndex": 69,
"startIndex": 61,
"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": 61
}
],
"endIndex": 69,
"startIndex": 60,
"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": 131,
"paragraph": {
"elements": [
{
"endIndex": 131,
"startIndex": 70,
"textRun": {
"content": "In this codelab, you’ll build and test a simple Flutter app.\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": 70
}
],
"endIndex": 131,
"startIndex": 69,
"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": 167,
"startIndex": 131,
"tableCells": [
{
"content": [
{
"endIndex": 137,
"paragraph": {
"elements": [
{
"endIndex": 137,
"startIndex": 133,
"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": 133
}
],
"endIndex": 137,
"startIndex": 132,
"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": 167,
"paragraph": {
"elements": [
{
"endIndex": 167,
"startIndex": 138,
"textRun": {
"content": "codelabs/flutter-app-testing\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": 138
}
],
"endIndex": 167,
"startIndex": 137,
"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": 187,
"startIndex": 167,
"tableCells": [
{
"content": [
{
"endIndex": 178,
"paragraph": {
"elements": [
{
"endIndex": 178,
"startIndex": 169,
"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": 169
}
],
"endIndex": 178,
"startIndex": 168,
"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": 187,
"paragraph": {
"elements": [
{
"endIndex": 187,
"startIndex": 179,
"textRun": {
"content": "Flutter\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 179
}
],
"endIndex": 187,
"startIndex": 178,
"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": 226,
"startIndex": 187,
"tableCells": [
{
"content": [
{
"endIndex": 201,
"paragraph": {
"elements": [
{
"endIndex": 201,
"startIndex": 189,
"textRun": {
"content": "Environment\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": 189
}
],
"endIndex": 201,
"startIndex": 188,
"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": 226,
"paragraph": {
"elements": [
{
"endIndex": 226,
"startIndex": 202,
"textRun": {
"content": "web, kiosk, tag-flutter\n",
"textStyle": {
"fontSize": {
"magnitude": 10.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 202
}
],
"endIndex": 226,
"startIndex": 201,
"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": 241,
"startIndex": 226,
"tableCells": [
{
"content": [
{
"endIndex": 235,
"paragraph": {
"elements": [
{
"endIndex": 235,
"startIndex": 228,
"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": 228
}
],
"endIndex": 235,
"startIndex": 227,
"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": 241,
"paragraph": {
"elements": [
{
"endIndex": 241,
"startIndex": 236,
"textRun": {
"content": "Live\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": 236
}
],
"endIndex": 241,
"startIndex": 235,
"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": 300,
"startIndex": 241,
"tableCells": [
{
"content": [
{
"endIndex": 257,
"paragraph": {
"elements": [
{
"endIndex": 257,
"startIndex": 243,
"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": 243
}
],
"endIndex": 257,
"startIndex": 242,
"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": 300,
"paragraph": {
"elements": [
{
"endIndex": 300,
"startIndex": 258,
"textRun": {
"content": "https://github.com/flutter/website/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": 258
}
],
"endIndex": 300,
"startIndex": 257,
"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": 342,
"startIndex": 300,
"tableCells": [
{
"content": [
{
"endIndex": 309,
"paragraph": {
"elements": [
{
"endIndex": 309,
"startIndex": 302,
"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": 302
}
],
"endIndex": 309,
"startIndex": 301,
"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": 342,
"paragraph": {
"elements": [
{
"endIndex": 342,
"startIndex": 310,
"textRun": {
"content": "Abdullah Deshmukh, Brett Morgan\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": 310
}
],
"endIndex": 342,
"startIndex": 309,
"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": 344,
"paragraph": {
"elements": [
{
"endIndex": 344,
"startIndex": 343,
"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": 343
},
{
"endIndex": 345,
"paragraph": {
"elements": [
{
"endIndex": 345,
"startIndex": 344,
"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": 344
},
{
"endIndex": 1451,
"startIndex": 345,
"tableOfContents": {
"content": [
{
"endIndex": 359,
"paragraph": {
"elements": [
{
"endIndex": 358,
"startIndex": 346,
"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": 359,
"startIndex": 358,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 4.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 346
},
{
"endIndex": 377,
"paragraph": {
"elements": [
{
"endIndex": 376,
"startIndex": 359,
"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.dbb1hnfdd0wt"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 377,
"startIndex": 376,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 359
},
{
"endIndex": 395,
"paragraph": {
"elements": [
{
"endIndex": 394,
"startIndex": 377,
"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.vf85pbg1fgn7"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 395,
"startIndex": 394,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 377
},
{
"endIndex": 443,
"paragraph": {
"elements": [
{
"endIndex": 442,
"startIndex": 395,
"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": 443,
"startIndex": 442,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 395
},
{
"endIndex": 487,
"paragraph": {
"elements": [
{
"endIndex": 486,
"startIndex": 443,
"textRun": {
"content": "Set up your Flutter development 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.m0ycdyje7e1p"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 487,
"startIndex": 486,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 10.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 443
},
{
"endIndex": 503,
"paragraph": {
"elements": [
{
"endIndex": 502,
"startIndex": 487,
"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": 503,
"startIndex": 502,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 10.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 487
},
{
"endIndex": 550,
"paragraph": {
"elements": [
{
"endIndex": 549,
"startIndex": 503,
"textRun": {
"content": "Create a new Flutter app & update dependencies",
"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.fzmj764jk1it"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 550,
"startIndex": 549,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 503
},
{
"endIndex": 564,
"paragraph": {
"elements": [
{
"endIndex": 563,
"startIndex": 550,
"textRun": {
"content": "Build 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": 564,
"startIndex": 563,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 10.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 550
},
{
"endIndex": 627,
"paragraph": {
"elements": [
{
"endIndex": 626,
"startIndex": 564,
"textRun": {
"content": "First, create the Favorites model in lib/models/favorites.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.vhrv5dclm5vw"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 627,
"startIndex": 626,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 564
},
{
"endIndex": 653,
"paragraph": {
"elements": [
{
"endIndex": 652,
"startIndex": 627,
"textRun": {
"content": "lib/models/favorites.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.lsviuhkhdr2"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 653,
"startIndex": 652,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 627
},
{
"endIndex": 706,
"paragraph": {
"elements": [
{
"endIndex": 705,
"startIndex": 653,
"textRun": {
"content": "Add the Favorites page in lib/screens/favorites.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.qzgctyugqfot"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 706,
"startIndex": 705,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 653
},
{
"endIndex": 733,
"paragraph": {
"elements": [
{
"endIndex": 732,
"startIndex": 706,
"textRun": {
"content": "lib/screens/favorites.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.sgii43wa0h80"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 733,
"startIndex": 732,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 706
},
{
"endIndex": 776,
"paragraph": {
"elements": [
{
"endIndex": 775,
"startIndex": 733,
"textRun": {
"content": "Add the Home page in lib/screens/home.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.lmxxfjfy7j9r"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 776,
"startIndex": 775,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 733
},
{
"endIndex": 798,
"paragraph": {
"elements": [
{
"endIndex": 797,
"startIndex": 776,
"textRun": {
"content": "lib/screens/home.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.gdhfwytw20p7"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 798,
"startIndex": 797,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 776
},
{
"endIndex": 836,
"paragraph": {
"elements": [
{
"endIndex": 835,
"startIndex": 798,
"textRun": {
"content": "Replace the contents of 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.2jmtlwdbzpsw"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 836,
"startIndex": 835,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 798
},
{
"endIndex": 850,
"paragraph": {
"elements": [
{
"endIndex": 849,
"startIndex": 836,
"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.xzhg8e14tk08"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 850,
"startIndex": 849,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 836
},
{
"endIndex": 876,
"paragraph": {
"elements": [
{
"endIndex": 875,
"startIndex": 850,
"textRun": {
"content": "Unit testing the provider",
"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.o7wkpp16ivz9"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 876,
"startIndex": 875,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 10.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 850
},
{
"endIndex": 905,
"paragraph": {
"elements": [
{
"endIndex": 904,
"startIndex": 876,
"textRun": {
"content": "Remove test/widget_test.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.ozej4uql1crf"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 905,
"startIndex": 904,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 876
},
{
"endIndex": 928,
"paragraph": {
"elements": [
{
"endIndex": 927,
"startIndex": 905,
"textRun": {
"content": "Create a new test file",
"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.ju260rdqj548"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 928,
"startIndex": 927,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 905
},
{
"endIndex": 960,
"paragraph": {
"elements": [
{
"endIndex": 959,
"startIndex": 928,
"textRun": {
"content": "test/models/favorites_test.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.1wzi16ibjujt"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 960,
"startIndex": 959,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 928
},
{
"endIndex": 992,
"paragraph": {
"elements": [
{
"endIndex": 991,
"startIndex": 960,
"textRun": {
"content": "test/models/favorites_test.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.84z4hkcjsaif"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 992,
"startIndex": 991,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 960
},
{
"endIndex": 1005,
"paragraph": {
"elements": [
{
"endIndex": 1004,
"startIndex": 992,
"textRun": {
"content": "Run the test",
"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.6yxrv73h3a0x"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1005,
"startIndex": 1004,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 992
},
{
"endIndex": 1020,
"paragraph": {
"elements": [
{
"endIndex": 1019,
"startIndex": 1005,
"textRun": {
"content": "Widget testing",
"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.7a0ktremdsrl"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1020,
"startIndex": 1019,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 10.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1005
},
{
"endIndex": 1043,
"paragraph": {
"elements": [
{
"endIndex": 1042,
"startIndex": 1020,
"textRun": {
"content": "Create a new test file",
"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.yy7mc2b5no56"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1043,
"startIndex": 1042,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1020
},
{
"endIndex": 1063,
"paragraph": {
"elements": [
{
"endIndex": 1062,
"startIndex": 1043,
"textRun": {
"content": "test/home_test.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.fuoyhtqb1e7n"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1063,
"startIndex": 1062,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1043
},
{
"endIndex": 1083,
"paragraph": {
"elements": [
{
"endIndex": 1082,
"startIndex": 1063,
"textRun": {
"content": "test/home_test.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.rfgwtui5w6q9"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1083,
"startIndex": 1082,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1063
},
{
"endIndex": 1096,
"paragraph": {
"elements": [
{
"endIndex": 1095,
"startIndex": 1083,
"textRun": {
"content": "Run the test",
"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.911yu4qzr38v"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1096,
"startIndex": 1095,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1083
},
{
"endIndex": 1116,
"paragraph": {
"elements": [
{
"endIndex": 1115,
"startIndex": 1096,
"textRun": {
"content": "test/home_test.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.hitrp1fahwcs"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1116,
"startIndex": 1115,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1096
},
{
"endIndex": 1141,
"paragraph": {
"elements": [
{
"endIndex": 1140,
"startIndex": 1116,
"textRun": {
"content": "test/favorites_test.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.4bn147hqux75"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1141,
"startIndex": 1140,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1116
},
{
"endIndex": 1179,
"paragraph": {
"elements": [
{
"endIndex": 1178,
"startIndex": 1141,
"textRun": {
"content": "Testing app UI with integration tests",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.lb4oolapswgl"
},
"underline": true
}
}
},
{
"endIndex": 1179,
"startIndex": 1178,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"underline": true
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 10.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1141
},
{
"endIndex": 1194,
"paragraph": {
"elements": [
{
"endIndex": 1193,
"startIndex": 1179,
"textRun": {
"content": "Write the test",
"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.tvwf13ue5p6g"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1194,
"startIndex": 1193,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1179
},
{
"endIndex": 1225,
"paragraph": {
"elements": [
{
"endIndex": 1224,
"startIndex": 1194,
"textRun": {
"content": "integration_test/app_test.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.chovoorugncs"
},
"underline": true
}
}
},
{
"endIndex": 1225,
"startIndex": 1224,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"underline": true
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1194
},
{
"endIndex": 1238,
"paragraph": {
"elements": [
{
"endIndex": 1237,
"startIndex": 1225,
"textRun": {
"content": "Run the test",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.1lqalhwb26sl"
},
"underline": true
}
}
},
{
"endIndex": 1238,
"startIndex": 1237,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"underline": true
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1225
},
{
"endIndex": 1282,
"paragraph": {
"elements": [
{
"endIndex": 1281,
"startIndex": 1238,
"textRun": {
"content": "Testing app performance with Flutter Driver",
"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.taqgmwcoaqg"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1282,
"startIndex": 1281,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 10.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1238
},
{
"endIndex": 1307,
"paragraph": {
"elements": [
{
"endIndex": 1306,
"startIndex": 1282,
"textRun": {
"content": "Write a performance test",
"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.2bdo8691h79t"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1307,
"startIndex": 1306,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1282
},
{
"endIndex": 1339,
"paragraph": {
"elements": [
{
"endIndex": 1338,
"startIndex": 1307,
"textRun": {
"content": "integration_test/perf_test.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.926ood5ssvbr"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1339,
"startIndex": 1338,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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",
"spaceAbove": {
"magnitude": 3.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1307
},
{
"endIndex": 1371,
"paragraph": {
"elements": [
{
"endIndex": 1370,
"startIndex": 1339,
"textRun": {
"content": "Capture the performance results",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.k9x9lpdpqq14"
},
"underline": true
}
}
},
{
"endIndex": 1371,
"startIndex": 1370,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"underline": true
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1339
},
{
"endIndex": 1400,
"paragraph": {
"elements": [
{
"endIndex": 1399,
"startIndex": 1371,
"textRun": {
"content": "test_driver/perf_driver.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"headingId": "h.u5xt3q47y9fk"
},
"underline": true
}
}
},
{
"endIndex": 1400,
"startIndex": 1399,
"textRun": {
"content": "\n",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"underline": true
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1371
},
{
"endIndex": 1413,
"paragraph": {
"elements": [
{
"endIndex": 1412,
"startIndex": 1400,
"textRun": {
"content": "Run the test",
"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.deav4oq6epb2"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1413,
"startIndex": 1412,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"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"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1400
},
{
"endIndex": 1430,
"paragraph": {
"elements": [
{
"endIndex": 1429,
"startIndex": 1413,
"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.wyjmgdlwi2kp"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1430,
"startIndex": 1429,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spaceAbove": {
"magnitude": 10.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1413
},
{
"endIndex": 1450,
"paragraph": {
"elements": [
{
"endIndex": 1449,
"startIndex": 1430,
"textRun": {
"content": "What you’ve learned",
"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.1hcibaejjgkm"
},
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
},
{
"endIndex": 1450,
"startIndex": 1449,
"textRun": {
"content": "\n",
"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,
"smallCaps": false,
"strikethrough": false,
"underline": true,
"weightedFontFamily": {
"fontFamily": "Roboto",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"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"
},
"spaceBelow": {
"magnitude": 4.0,
"unit": "PT"
},
"spacingMode": "NEVER_COLLAPSE"
}
},
"startIndex": 1430
}
]
}
},
{
"endIndex": 1452,
"paragraph": {
"elements": [
{
"endIndex": 1452,
"startIndex": 1451,
"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": 1451
},
{
"endIndex": 1454,
"paragraph": {
"elements": [
{
"endIndex": 1453,
"horizontalRule": {
"textStyle": {}
},
"startIndex": 1452
},
{
"endIndex": 1454,
"startIndex": 1453,
"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": 1452
},
{
"endIndex": 1455,
"paragraph": {
"elements": [
{
"endIndex": 1455,
"startIndex": 1454,
"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": 1454
},
{
"endIndex": 1468,
"paragraph": {
"elements": [
{
"endIndex": 1468,
"startIndex": 1455,
"textRun": {
"content": "Introduction\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.ok7k5uux6",
"namedStyleType": "HEADING_1",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {}
}
}
},
"startIndex": 1455
},
{
"endIndex": 1469,
"paragraph": {
"elements": [
{
"endIndex": 1469,
"startIndex": 1468,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 1468
},
{
"endIndex": 1609,
"paragraph": {
"elements": [
{
"endIndex": 1609,
"startIndex": 1469,
"textRun": {
"content": "Flutter is Google's UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase. \n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 1469
},
{
"endIndex": 1610,
"paragraph": {
"elements": [
{
"endIndex": 1610,
"startIndex": 1609,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 1609
},
{
"endIndex": 1729,
"paragraph": {
"elements": [
{
"endIndex": 1692,
"startIndex": 1610,
"textRun": {
"content": "In this codelab, you’ll build and test a simple Flutter app. The app will use the ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1700,
"startIndex": 1692,
"textRun": {
"content": "Provider",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dev/packages/provider"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1728,
"startIndex": 1700,
"textRun": {
"content": " package for managing state.",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1729,
"startIndex": 1728,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 1610
},
{
"endIndex": 1747,
"paragraph": {
"elements": [
{
"endIndex": 1747,
"startIndex": 1729,
"textRun": {
"content": "What you’ll learn\n",
"textStyle": {
"bold": false,
"fontSize": {
"magnitude": 16.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.dbb1hnfdd0wt",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 1729
},
{
"endIndex": 1748,
"paragraph": {
"elements": [
{
"endIndex": 1748,
"startIndex": 1747,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 1747
},
{
"endIndex": 1810,
"paragraph": {
"bullet": {
"listId": "kix.qx7bo6w9dag0",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 1810,
"startIndex": 1748,
"textRun": {
"content": "How to create widget tests using the widget testing framework\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,
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 1748
},
{
"endIndex": 1916,
"paragraph": {
"bullet": {
"listId": "kix.qx7bo6w9dag0",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 1891,
"startIndex": 1810,
"textRun": {
"content": "How to create an integration test to test the app’s UI and performance using the ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 1907,
"startIndex": 1891,
"textRun": {
"content": "integration_test",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 1916,
"startIndex": 1907,
"textRun": {
"content": " library\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,
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 1810
},
{
"endIndex": 1981,
"paragraph": {
"bullet": {
"listId": "kix.qx7bo6w9dag0",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 1981,
"startIndex": 1916,
"textRun": {
"content": "How to test data classes (providers) with the help of unit tests\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,
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 1916
},
{
"endIndex": 1999,
"paragraph": {
"elements": [
{
"endIndex": 1999,
"startIndex": 1981,
"textRun": {
"content": "What you’ll build\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.vf85pbg1fgn7",
"lineSpacing": 100.0,
"namedStyleType": "HEADING_2",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
}
}
},
"startIndex": 1981
},
{
"endIndex": 2199,
"paragraph": {
"elements": [
{
"endIndex": 2199,
"startIndex": 1999,
"textRun": {
"content": "In this codelab, you’ll start by building a simple application with a list of items. We provide the source code for you so you can get right to the testing. The app supports the following operations:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
}
}
},
"startIndex": 1999
},
{
"endIndex": 2229,
"paragraph": {
"bullet": {
"listId": "kix.k0g7fgw2pxb9",
"textStyle": {
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 2229,
"startIndex": 2199,
"textRun": {
"content": "Adding the items to favorites\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,
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2199
},
{
"endIndex": 2259,
"paragraph": {
"bullet": {
"listId": "kix.k0g7fgw2pxb9",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 2259,
"startIndex": 2229,
"textRun": {
"content": "Viewing the list of favorites\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": 2229
},
{
"endIndex": 2298,
"paragraph": {
"bullet": {
"listId": "kix.k0g7fgw2pxb9",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 2297,
"startIndex": 2259,
"textRun": {
"content": "Removing items from the favorites list",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2298,
"startIndex": 2297,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"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": 2259
},
{
"endIndex": 2299,
"paragraph": {
"elements": [
{
"endIndex": 2299,
"startIndex": 2298,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 2298
},
{
"endIndex": 2570,
"startIndex": 2299,
"table": {
"columns": 2,
"rows": 1,
"tableRows": [
{
"endIndex": 2569,
"startIndex": 2300,
"tableCells": [
{
"content": [
{
"endIndex": 2364,
"paragraph": {
"elements": [
{
"endIndex": 2364,
"startIndex": 2302,
"textRun": {
"content": "Once the app is complete, you will write the following tests:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"unit": "PT"
},
"indentStart": {
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 2302
},
{
"endIndex": 2417,
"paragraph": {
"bullet": {
"listId": "kix.m93cb198q22r",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 2417,
"startIndex": 2364,
"textRun": {
"content": "Unit tests to validate the add and remove operations\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": 2364
},
{
"endIndex": 2464,
"paragraph": {
"bullet": {
"listId": "kix.m93cb198q22r",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 2464,
"startIndex": 2417,
"textRun": {
"content": "Widgets tests for the home and favorites pages\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": 2417
},
{
"endIndex": 2532,
"paragraph": {
"bullet": {
"listId": "kix.m93cb198q22r",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 2531,
"startIndex": 2464,
"textRun": {
"content": "UI and performance tests for the entire app using integration tests",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2532,
"startIndex": 2531,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"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": 2464
}
],
"endIndex": 2532,
"startIndex": 2301,
"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": 2535,
"paragraph": {
"elements": [
{
"endIndex": 2534,
"inlineObjectElement": {
"inlineObjectId": "kix.gg3gr5sijdnh",
"textStyle": {}
},
"startIndex": 2533
},
{
"endIndex": 2535,
"startIndex": 2534,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"alignment": "CENTER",
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 2533
},
{
"endIndex": 2569,
"paragraph": {
"elements": [
{
"endIndex": 2569,
"startIndex": 2535,
"textRun": {
"content": "GIF of the app running on Android\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"alignment": "CENTER",
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 2535
}
],
"endIndex": 2569,
"startIndex": 2532,
"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": 2571,
"paragraph": {
"elements": [
{
"endIndex": 2571,
"startIndex": 2570,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 2570
},
{
"endIndex": 2572,
"paragraph": {
"elements": [
{
"endIndex": 2572,
"startIndex": 2571,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 2571
},
{
"endIndex": 2573,
"paragraph": {
"elements": [
{
"endIndex": 2573,
"startIndex": 2572,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 115.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 2572
},
{
"endIndex": 2842,
"startIndex": 2573,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 2841,
"startIndex": 2574,
"tableCells": [
{
"content": [
{
"endIndex": 2624,
"paragraph": {
"elements": [
{
"endIndex": 2624,
"startIndex": 2576,
"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": 2576
},
{
"endIndex": 2674,
"paragraph": {
"bullet": {
"listId": "kix.lwtrs6k81vg0",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 2674,
"startIndex": 2624,
"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": 2624
},
{
"endIndex": 2733,
"paragraph": {
"bullet": {
"listId": "kix.lwtrs6k81vg0",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 2733,
"startIndex": 2674,
"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": 2674
},
{
"endIndex": 2787,
"paragraph": {
"bullet": {
"listId": "kix.lwtrs6k81vg0",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 2787,
"startIndex": 2733,
"textRun": {
"content": "I'm looking for an 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": 2733
},
{
"endIndex": 2841,
"paragraph": {
"bullet": {
"listId": "kix.lwtrs6k81vg0",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 2841,
"startIndex": 2787,
"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": 2787
}
],
"endIndex": 2841,
"startIndex": 2575,
"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": 2843,
"paragraph": {
"elements": [
{
"endIndex": 2843,
"startIndex": 2842,
"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": 2842
},
{
"endIndex": 2845,
"paragraph": {
"elements": [
{
"endIndex": 2844,
"horizontalRule": {
"textStyle": {}
},
"startIndex": 2843
},
{
"endIndex": 2845,
"startIndex": 2844,
"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": 2843
},
{
"endIndex": 2890,
"paragraph": {
"elements": [
{
"endIndex": 2890,
"startIndex": 2845,
"textRun": {
"content": "Set up your Flutter development environment \n",
"textStyle": {
"fontSize": {
"magnitude": 20.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.m0ycdyje7e1p",
"namedStyleType": "HEADING_1",
"spaceAbove": {
"magnitude": 20.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 6.0,
"unit": "PT"
}
}
},
"startIndex": 2845
},
{
"endIndex": 2906,
"paragraph": {
"elements": [
{
"endIndex": 2906,
"startIndex": 2890,
"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"
}
},
"startIndex": 2890
},
{
"endIndex": 2923,
"paragraph": {
"elements": [
{
"endIndex": 2923,
"startIndex": 2906,
"textRun": {
"content": "Environment: web\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"
}
},
"startIndex": 2906
},
{
"endIndex": 2924,
"paragraph": {
"elements": [
{
"endIndex": 2924,
"startIndex": 2923,
"textRun": {
"content": "\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"
}
},
"startIndex": 2923
},
{
"endIndex": 2975,
"paragraph": {
"elements": [
{
"endIndex": 2926,
"startIndex": 2924,
"textRun": {
"content": "[[",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2932,
"startIndex": 2926,
"textRun": {
"content": "import",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2933,
"startIndex": 2932,
"textRun": {
"content": " ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2972,
"startIndex": 2933,
"textRun": {
"content": "Flutter Codelab Development Environment",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://docs.google.com/document/d/148aYaNSKNQDGNt7WVd10KS29HHSR4YRfiRJpZCnlwGs"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2974,
"startIndex": 2972,
"textRun": {
"content": "]]",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 2975,
"startIndex": 2974,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 2924
},
{
"endIndex": 2976,
"paragraph": {
"elements": [
{
"endIndex": 2976,
"startIndex": 2975,
"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": 2975
},
{
"endIndex": 2992,
"paragraph": {
"elements": [
{
"endIndex": 2992,
"startIndex": 2976,
"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": 2976
},
{
"endIndex": 3007,
"paragraph": {
"elements": [
{
"endIndex": 3006,
"startIndex": 2992,
"textRun": {
"content": "Duration: 5:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3007,
"startIndex": 3006,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 2992
},
{
"endIndex": 3054,
"paragraph": {
"elements": [
{
"endIndex": 3054,
"startIndex": 3007,
"textRun": {
"content": "Create a new Flutter app & update dependencies\n",
"textStyle": {
"fontSize": {
"magnitude": 15.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.fzmj764jk1it",
"lineSpacing": 100.0,
"namedStyleType": "HEADING_2",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 15.0,
"unit": "PT"
}
}
},
"startIndex": 3007
},
{
"endIndex": 3055,
"paragraph": {
"elements": [
{
"endIndex": 3055,
"startIndex": 3054,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3054
},
{
"endIndex": 3275,
"paragraph": {
"elements": [
{
"endIndex": 3274,
"startIndex": 3055,
"textRun": {
"content": "This codelab focuses on testing a Flutter mobile app. You will quickly create the app to be tested using source files that you copy and paste. The rest of the codelab then focuses on learning different kinds of testing.",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 3275,
"startIndex": 3274,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3055
},
{
"endIndex": 3276,
"paragraph": {
"elements": [
{
"endIndex": 3276,
"startIndex": 3275,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3275
},
{
"endIndex": 3429,
"paragraph": {
"elements": [
{
"endIndex": 3277,
"inlineObjectElement": {
"inlineObjectId": "kix.t1po0vh8s85t",
"textStyle": {}
},
"startIndex": 3276
},
{
"endIndex": 3349,
"startIndex": 3277,
"textRun": {
"content": "Create a simple templated Flutter app, either using the instructions in ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 3392,
"startIndex": 3349,
"textRun": {
"content": "Getting Started with your first Flutter app",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.9098039,
"green": 0.4509804,
"red": 0.101960786
}
}
},
"link": {
"url": "https://flutter.dev/get-started/test-drive/"
}
}
}
},
{
"endIndex": 3427,
"startIndex": 3392,
"textRun": {
"content": ", or on the command line as follows",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 3428,
"startIndex": 3427,
"textRun": {
"content": ".",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 3429,
"startIndex": 3428,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3276
},
{
"endIndex": 3430,
"paragraph": {
"elements": [
{
"endIndex": 3430,
"startIndex": 3429,
"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": 3429
},
{
"endIndex": 3463,
"startIndex": 3430,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 3462,
"startIndex": 3431,
"tableCells": [
{
"content": [
{
"endIndex": 3462,
"paragraph": {
"elements": [
{
"endIndex": 3462,
"startIndex": 3433,
"textRun": {
"content": "$ flutter create testing_app\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": 3433
}
],
"endIndex": 3462,
"startIndex": 3432,
"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": {
"magnitude": 24.75,
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 3464,
"paragraph": {
"elements": [
{
"endIndex": 3464,
"startIndex": 3463,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 3463
},
{
"endIndex": 3548,
"paragraph": {
"elements": [
{
"endIndex": 3465,
"inlineObjectElement": {
"inlineObjectId": "kix.1a8yopvgl1v3",
"textStyle": {}
},
"startIndex": 3464
},
{
"endIndex": 3538,
"startIndex": 3465,
"textRun": {
"content": "Add pub dependencies on the command line. For easy state management, add ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 3546,
"startIndex": 3538,
"textRun": {
"content": "provider",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dev/packages/provider"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 3547,
"startIndex": 3546,
"textRun": {
"content": ":",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 3548,
"startIndex": 3547,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 3464
},
{
"endIndex": 3883,
"startIndex": 3548,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 3882,
"startIndex": 3549,
"tableCells": [
{
"content": [
{
"endIndex": 3568,
"paragraph": {
"elements": [
{
"endIndex": 3568,
"startIndex": 3551,
"textRun": {
"content": "$ cd testing_app\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": 3551
},
{
"endIndex": 3595,
"paragraph": {
"elements": [
{
"endIndex": 3595,
"startIndex": 3568,
"textRun": {
"content": "$ flutter pub add provider\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": 3568
},
{
"endIndex": 3621,
"paragraph": {
"elements": [
{
"endIndex": 3621,
"startIndex": 3595,
"textRun": {
"content": "Resolving dependencies...\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": 3595
},
{
"endIndex": 3660,
"paragraph": {
"elements": [
{
"endIndex": 3660,
"startIndex": 3621,
"textRun": {
"content": " collection 1.17.0 (1.17.1 available)\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": 3621
},
{
"endIndex": 3689,
"paragraph": {
"elements": [
{
"endIndex": 3689,
"startIndex": 3660,
"textRun": {
"content": " js 0.6.5 (0.6.7 available)\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": 3660
},
{
"endIndex": 3727,
"paragraph": {
"elements": [
{
"endIndex": 3727,
"startIndex": 3689,
"textRun": {
"content": " matcher 0.12.13 (0.12.14 available)\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": 3689
},
{
"endIndex": 3758,
"paragraph": {
"elements": [
{
"endIndex": 3758,
"startIndex": 3727,
"textRun": {
"content": " meta 1.8.0 (1.9.0 available)\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": 3727
},
{
"endIndex": 3773,
"paragraph": {
"elements": [
{
"endIndex": 3773,
"startIndex": 3758,
"textRun": {
"content": "+ nested 1.0.0\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": 3758
},
{
"endIndex": 3804,
"paragraph": {
"elements": [
{
"endIndex": 3804,
"startIndex": 3773,
"textRun": {
"content": " path 1.8.2 (1.8.3 available)\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": 3773
},
{
"endIndex": 3821,
"paragraph": {
"elements": [
{
"endIndex": 3821,
"startIndex": 3804,
"textRun": {
"content": "+ provider 6.0.5\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": 3804
},
{
"endIndex": 3858,
"paragraph": {
"elements": [
{
"endIndex": 3858,
"startIndex": 3821,
"textRun": {
"content": " test_api 0.4.16 (0.4.18 available)\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": 3821
},
{
"endIndex": 3882,
"paragraph": {
"elements": [
{
"endIndex": 3882,
"startIndex": 3858,
"textRun": {
"content": "Changed 2 dependencies!\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": 3858
}
],
"endIndex": 3882,
"startIndex": 3550,
"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": 3884,
"paragraph": {
"elements": [
{
"endIndex": 3884,
"startIndex": 3883,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 3883
},
{
"endIndex": 3973,
"paragraph": {
"elements": [
{
"endIndex": 3955,
"startIndex": 3884,
"textRun": {
"content": "For self-driving testing of Flutter code on devices and emulators, add ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 3971,
"startIndex": 3955,
"textRun": {
"content": "integration_test",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/flutter/tree/main/packages/integration_test"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 3972,
"startIndex": 3971,
"textRun": {
"content": ":",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 3973,
"startIndex": 3972,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 3884
},
{
"endIndex": 4631,
"startIndex": 3973,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 4630,
"startIndex": 3974,
"tableCells": [
{
"content": [
{
"endIndex": 4031,
"paragraph": {
"elements": [
{
"endIndex": 4031,
"startIndex": 3976,
"textRun": {
"content": "$ flutter pub add --dev --sdk=flutter integration_test\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 3976
},
{
"endIndex": 4057,
"paragraph": {
"elements": [
{
"endIndex": 4057,
"startIndex": 4031,
"textRun": {
"content": "Resolving dependencies...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4031
},
{
"endIndex": 4091,
"paragraph": {
"elements": [
{
"endIndex": 4091,
"startIndex": 4057,
"textRun": {
"content": "+ archive 3.3.2 (3.3.6 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4057
},
{
"endIndex": 4130,
"paragraph": {
"elements": [
{
"endIndex": 4130,
"startIndex": 4091,
"textRun": {
"content": " collection 1.17.0 (1.17.1 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4091
},
{
"endIndex": 4145,
"paragraph": {
"elements": [
{
"endIndex": 4145,
"startIndex": 4130,
"textRun": {
"content": "+ crypto 3.0.2\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4130
},
{
"endIndex": 4158,
"paragraph": {
"elements": [
{
"endIndex": 4158,
"startIndex": 4145,
"textRun": {
"content": "+ file 6.1.4\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4145
},
{
"endIndex": 4198,
"paragraph": {
"elements": [
{
"endIndex": 4198,
"startIndex": 4158,
"textRun": {
"content": "+ flutter_driver 0.0.0 from sdk flutter\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4158
},
{
"endIndex": 4253,
"paragraph": {
"elements": [
{
"endIndex": 4253,
"startIndex": 4198,
"textRun": {
"content": "+ fuchsia_remote_debug_protocol 0.0.0 from sdk flutter\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4198
},
{
"endIndex": 4295,
"paragraph": {
"elements": [
{
"endIndex": 4295,
"startIndex": 4253,
"textRun": {
"content": "+ integration_test 0.0.0 from sdk flutter\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4253
},
{
"endIndex": 4324,
"paragraph": {
"elements": [
{
"endIndex": 4324,
"startIndex": 4295,
"textRun": {
"content": " js 0.6.5 (0.6.7 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4295
},
{
"endIndex": 4362,
"paragraph": {
"elements": [
{
"endIndex": 4362,
"startIndex": 4324,
"textRun": {
"content": " matcher 0.12.13 (0.12.14 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4324
},
{
"endIndex": 4393,
"paragraph": {
"elements": [
{
"endIndex": 4393,
"startIndex": 4362,
"textRun": {
"content": " meta 1.8.0 (1.9.0 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4362
},
{
"endIndex": 4424,
"paragraph": {
"elements": [
{
"endIndex": 4424,
"startIndex": 4393,
"textRun": {
"content": " path 1.8.2 (1.8.3 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4393
},
{
"endIndex": 4441,
"paragraph": {
"elements": [
{
"endIndex": 4441,
"startIndex": 4424,
"textRun": {
"content": "+ platform 3.1.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4424
},
{
"endIndex": 4457,
"paragraph": {
"elements": [
{
"endIndex": 4457,
"startIndex": 4441,
"textRun": {
"content": "+ process 4.2.4\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4441
},
{
"endIndex": 4475,
"paragraph": {
"elements": [
{
"endIndex": 4475,
"startIndex": 4457,
"textRun": {
"content": "+ sync_http 0.3.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4457
},
{
"endIndex": 4512,
"paragraph": {
"elements": [
{
"endIndex": 4512,
"startIndex": 4475,
"textRun": {
"content": " test_api 0.4.16 (0.4.18 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4475
},
{
"endIndex": 4531,
"paragraph": {
"elements": [
{
"endIndex": 4531,
"startIndex": 4512,
"textRun": {
"content": "+ typed_data 1.3.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4512
},
{
"endIndex": 4569,
"paragraph": {
"elements": [
{
"endIndex": 4569,
"startIndex": 4531,
"textRun": {
"content": "+ vm_service 9.4.0 (11.0.1 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4531
},
{
"endIndex": 4605,
"paragraph": {
"elements": [
{
"endIndex": 4605,
"startIndex": 4569,
"textRun": {
"content": "+ webdriver 3.0.1 (3.0.2 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4569
},
{
"endIndex": 4630,
"paragraph": {
"elements": [
{
"endIndex": 4630,
"startIndex": 4605,
"textRun": {
"content": "Changed 12 dependencies!\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4605
}
],
"endIndex": 4630,
"startIndex": 3975,
"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": 4632,
"paragraph": {
"elements": [
{
"endIndex": 4632,
"startIndex": 4631,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 4631
},
{
"endIndex": 4741,
"paragraph": {
"elements": [
{
"endIndex": 4725,
"startIndex": 4632,
"textRun": {
"content": "For an advanced API to test Flutter applications that run on real devices and emulators, add ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 4739,
"startIndex": 4725,
"textRun": {
"content": "flutter_driver",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://api.flutter.dev/flutter/flutter_driver/flutter_driver-library.html"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 4740,
"startIndex": 4739,
"textRun": {
"content": ":",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 4741,
"startIndex": 4740,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 4632
},
{
"endIndex": 5155,
"startIndex": 4741,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 5154,
"startIndex": 4742,
"tableCells": [
{
"content": [
{
"endIndex": 4797,
"paragraph": {
"elements": [
{
"endIndex": 4797,
"startIndex": 4744,
"textRun": {
"content": "$ flutter pub add --dev --sdk=flutter flutter_driver\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4744
},
{
"endIndex": 4823,
"paragraph": {
"elements": [
{
"endIndex": 4823,
"startIndex": 4797,
"textRun": {
"content": "Resolving dependencies...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4797
},
{
"endIndex": 4857,
"paragraph": {
"elements": [
{
"endIndex": 4857,
"startIndex": 4823,
"textRun": {
"content": " archive 3.3.2 (3.3.6 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4823
},
{
"endIndex": 4896,
"paragraph": {
"elements": [
{
"endIndex": 4896,
"startIndex": 4857,
"textRun": {
"content": " collection 1.17.0 (1.17.1 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4857
},
{
"endIndex": 4925,
"paragraph": {
"elements": [
{
"endIndex": 4925,
"startIndex": 4896,
"textRun": {
"content": " js 0.6.5 (0.6.7 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4896
},
{
"endIndex": 4963,
"paragraph": {
"elements": [
{
"endIndex": 4963,
"startIndex": 4925,
"textRun": {
"content": " matcher 0.12.13 (0.12.14 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4925
},
{
"endIndex": 4994,
"paragraph": {
"elements": [
{
"endIndex": 4994,
"startIndex": 4963,
"textRun": {
"content": " meta 1.8.0 (1.9.0 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4963
},
{
"endIndex": 5025,
"paragraph": {
"elements": [
{
"endIndex": 5025,
"startIndex": 4994,
"textRun": {
"content": " path 1.8.2 (1.8.3 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 4994
},
{
"endIndex": 5062,
"paragraph": {
"elements": [
{
"endIndex": 5062,
"startIndex": 5025,
"textRun": {
"content": " test_api 0.4.16 (0.4.18 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5025
},
{
"endIndex": 5100,
"paragraph": {
"elements": [
{
"endIndex": 5100,
"startIndex": 5062,
"textRun": {
"content": " vm_service 9.4.0 (11.0.1 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5062
},
{
"endIndex": 5136,
"paragraph": {
"elements": [
{
"endIndex": 5136,
"startIndex": 5100,
"textRun": {
"content": " webdriver 3.0.1 (3.0.2 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5100
},
{
"endIndex": 5154,
"paragraph": {
"elements": [
{
"endIndex": 5154,
"startIndex": 5136,
"textRun": {
"content": "Got dependencies!\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5136
}
],
"endIndex": 5154,
"startIndex": 4743,
"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": 5156,
"paragraph": {
"elements": [
{
"endIndex": 5156,
"startIndex": 5155,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 5155
},
{
"endIndex": 5192,
"paragraph": {
"elements": [
{
"endIndex": 5186,
"startIndex": 5156,
"textRun": {
"content": "For general test tooling, add ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 5190,
"startIndex": 5186,
"textRun": {
"content": "test",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dev/packages/test"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 5191,
"startIndex": 5190,
"textRun": {
"content": ":",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 5192,
"startIndex": 5191,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 5156
},
{
"endIndex": 6194,
"startIndex": 5192,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 6193,
"startIndex": 5193,
"tableCells": [
{
"content": [
{
"endIndex": 5224,
"paragraph": {
"elements": [
{
"endIndex": 5224,
"startIndex": 5195,
"textRun": {
"content": "$ flutter pub add --dev test\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5195
},
{
"endIndex": 5250,
"paragraph": {
"elements": [
{
"endIndex": 5250,
"startIndex": 5224,
"textRun": {
"content": "Resolving dependencies...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5224
},
{
"endIndex": 5279,
"paragraph": {
"elements": [
{
"endIndex": 5279,
"startIndex": 5250,
"textRun": {
"content": "+ _fe_analyzer_shared 52.0.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5250
},
{
"endIndex": 5296,
"paragraph": {
"elements": [
{
"endIndex": 5296,
"startIndex": 5279,
"textRun": {
"content": "+ analyzer 5.4.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5279
},
{
"endIndex": 5330,
"paragraph": {
"elements": [
{
"endIndex": 5330,
"startIndex": 5296,
"textRun": {
"content": " archive 3.3.2 (3.3.6 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5296
},
{
"endIndex": 5343,
"paragraph": {
"elements": [
{
"endIndex": 5343,
"startIndex": 5330,
"textRun": {
"content": "+ args 2.3.2\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5330
},
{
"endIndex": 5382,
"paragraph": {
"elements": [
{
"endIndex": 5382,
"startIndex": 5343,
"textRun": {
"content": " collection 1.17.0 (1.17.1 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5343
},
{
"endIndex": 5398,
"paragraph": {
"elements": [
{
"endIndex": 5398,
"startIndex": 5382,
"textRun": {
"content": "+ convert 3.1.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5382
},
{
"endIndex": 5415,
"paragraph": {
"elements": [
{
"endIndex": 5415,
"startIndex": 5398,
"textRun": {
"content": "+ coverage 1.6.3\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5398
},
{
"endIndex": 5446,
"paragraph": {
"elements": [
{
"endIndex": 5446,
"startIndex": 5415,
"textRun": {
"content": "+ frontend_server_client 3.2.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5415
},
{
"endIndex": 5459,
"paragraph": {
"elements": [
{
"endIndex": 5459,
"startIndex": 5446,
"textRun": {
"content": "+ glob 2.1.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5446
},
{
"endIndex": 5485,
"paragraph": {
"elements": [
{
"endIndex": 5485,
"startIndex": 5459,
"textRun": {
"content": "+ http_multi_server 3.2.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5459
},
{
"endIndex": 5505,
"paragraph": {
"elements": [
{
"endIndex": 5505,
"startIndex": 5485,
"textRun": {
"content": "+ http_parser 4.0.2\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5485
},
{
"endIndex": 5516,
"paragraph": {
"elements": [
{
"endIndex": 5516,
"startIndex": 5505,
"textRun": {
"content": "+ io 1.0.4\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5505
},
{
"endIndex": 5545,
"paragraph": {
"elements": [
{
"endIndex": 5545,
"startIndex": 5516,
"textRun": {
"content": " js 0.6.5 (0.6.7 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5516
},
{
"endIndex": 5561,
"paragraph": {
"elements": [
{
"endIndex": 5561,
"startIndex": 5545,
"textRun": {
"content": "+ logging 1.1.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5545
},
{
"endIndex": 5599,
"paragraph": {
"elements": [
{
"endIndex": 5599,
"startIndex": 5561,
"textRun": {
"content": " matcher 0.12.13 (0.12.14 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5561
},
{
"endIndex": 5630,
"paragraph": {
"elements": [
{
"endIndex": 5630,
"startIndex": 5599,
"textRun": {
"content": " meta 1.8.0 (1.9.0 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5599
},
{
"endIndex": 5643,
"paragraph": {
"elements": [
{
"endIndex": 5643,
"startIndex": 5630,
"textRun": {
"content": "+ mime 1.0.4\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5630
},
{
"endIndex": 5665,
"paragraph": {
"elements": [
{
"endIndex": 5665,
"startIndex": 5643,
"textRun": {
"content": "+ node_preamble 2.0.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5643
},
{
"endIndex": 5688,
"paragraph": {
"elements": [
{
"endIndex": 5688,
"startIndex": 5665,
"textRun": {
"content": "+ package_config 2.1.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5665
},
{
"endIndex": 5719,
"paragraph": {
"elements": [
{
"endIndex": 5719,
"startIndex": 5688,
"textRun": {
"content": " path 1.8.2 (1.8.3 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5688
},
{
"endIndex": 5732,
"paragraph": {
"elements": [
{
"endIndex": 5732,
"startIndex": 5719,
"textRun": {
"content": "+ pool 1.5.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5719
},
{
"endIndex": 5751,
"paragraph": {
"elements": [
{
"endIndex": 5751,
"startIndex": 5732,
"textRun": {
"content": "+ pub_semver 2.1.3\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5732
},
{
"endIndex": 5765,
"paragraph": {
"elements": [
{
"endIndex": 5765,
"startIndex": 5751,
"textRun": {
"content": "+ shelf 1.4.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5751
},
{
"endIndex": 5796,
"paragraph": {
"elements": [
{
"endIndex": 5796,
"startIndex": 5765,
"textRun": {
"content": "+ shelf_packages_handler 3.0.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5765
},
{
"endIndex": 5817,
"paragraph": {
"elements": [
{
"endIndex": 5817,
"startIndex": 5796,
"textRun": {
"content": "+ shelf_static 1.1.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5796
},
{
"endIndex": 5842,
"paragraph": {
"elements": [
{
"endIndex": 5842,
"startIndex": 5817,
"textRun": {
"content": "+ shelf_web_socket 1.0.3\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5817
},
{
"endIndex": 5873,
"paragraph": {
"elements": [
{
"endIndex": 5873,
"startIndex": 5842,
"textRun": {
"content": "+ source_map_stack_trace 2.1.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5842
},
{
"endIndex": 5895,
"paragraph": {
"elements": [
{
"endIndex": 5895,
"startIndex": 5873,
"textRun": {
"content": "+ source_maps 0.10.11\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5873
},
{
"endIndex": 5928,
"paragraph": {
"elements": [
{
"endIndex": 5928,
"startIndex": 5895,
"textRun": {
"content": "+ test 1.22.0 (1.23.0 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5895
},
{
"endIndex": 5965,
"paragraph": {
"elements": [
{
"endIndex": 5965,
"startIndex": 5928,
"textRun": {
"content": " test_api 0.4.16 (0.4.18 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5928
},
{
"endIndex": 6003,
"paragraph": {
"elements": [
{
"endIndex": 6003,
"startIndex": 5965,
"textRun": {
"content": "+ test_core 0.4.20 (0.4.23 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 5965
},
{
"endIndex": 6041,
"paragraph": {
"elements": [
{
"endIndex": 6041,
"startIndex": 6003,
"textRun": {
"content": " vm_service 9.4.0 (11.0.1 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6003
},
{
"endIndex": 6057,
"paragraph": {
"elements": [
{
"endIndex": 6057,
"startIndex": 6041,
"textRun": {
"content": "+ watcher 1.0.2\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6041
},
{
"endIndex": 6084,
"paragraph": {
"elements": [
{
"endIndex": 6084,
"startIndex": 6057,
"textRun": {
"content": "+ web_socket_channel 2.3.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6057
},
{
"endIndex": 6120,
"paragraph": {
"elements": [
{
"endIndex": 6120,
"startIndex": 6084,
"textRun": {
"content": " webdriver 3.0.1 (3.0.2 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6084
},
{
"endIndex": 6155,
"paragraph": {
"elements": [
{
"endIndex": 6155,
"startIndex": 6120,
"textRun": {
"content": "+ webkit_inspection_protocol 1.2.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6120
},
{
"endIndex": 6168,
"paragraph": {
"elements": [
{
"endIndex": 6168,
"startIndex": 6155,
"textRun": {
"content": "+ yaml 3.1.1\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6155
},
{
"endIndex": 6193,
"paragraph": {
"elements": [
{
"endIndex": 6193,
"startIndex": 6168,
"textRun": {
"content": "Changed 28 dependencies!\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6168
}
],
"endIndex": 6193,
"startIndex": 5194,
"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": 6195,
"paragraph": {
"elements": [
{
"endIndex": 6195,
"startIndex": 6194,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6194
},
{
"endIndex": 6239,
"paragraph": {
"elements": [
{
"endIndex": 6228,
"startIndex": 6195,
"textRun": {
"content": "For handling app navigation, add ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 6237,
"startIndex": 6228,
"textRun": {
"content": "go_router",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dev/packages/go_router"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 6239,
"startIndex": 6237,
"textRun": {
"content": ":\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6195
},
{
"endIndex": 6240,
"paragraph": {
"elements": [
{
"endIndex": 6240,
"startIndex": 6239,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6239
},
{
"endIndex": 6769,
"startIndex": 6240,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 6768,
"startIndex": 6241,
"tableCells": [
{
"content": [
{
"endIndex": 6271,
"paragraph": {
"elements": [
{
"endIndex": 6271,
"startIndex": 6243,
"textRun": {
"content": "$ flutter pub add go_router\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6243
},
{
"endIndex": 6297,
"paragraph": {
"elements": [
{
"endIndex": 6297,
"startIndex": 6271,
"textRun": {
"content": "Resolving dependencies...\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6271
},
{
"endIndex": 6331,
"paragraph": {
"elements": [
{
"endIndex": 6331,
"startIndex": 6297,
"textRun": {
"content": " archive 3.3.2 (3.3.6 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6297
},
{
"endIndex": 6370,
"paragraph": {
"elements": [
{
"endIndex": 6370,
"startIndex": 6331,
"textRun": {
"content": " collection 1.17.0 (1.17.1 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6331
},
{
"endIndex": 6415,
"paragraph": {
"elements": [
{
"endIndex": 6415,
"startIndex": 6370,
"textRun": {
"content": "+ flutter_web_plugins 0.0.0 from sdk flutter\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6370
},
{
"endIndex": 6433,
"paragraph": {
"elements": [
{
"endIndex": 6433,
"startIndex": 6415,
"textRun": {
"content": "+ go_router 6.0.4\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6415
},
{
"endIndex": 6462,
"paragraph": {
"elements": [
{
"endIndex": 6462,
"startIndex": 6433,
"textRun": {
"content": " js 0.6.5 (0.6.7 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6433
},
{
"endIndex": 6500,
"paragraph": {
"elements": [
{
"endIndex": 6500,
"startIndex": 6462,
"textRun": {
"content": " matcher 0.12.13 (0.12.14 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6462
},
{
"endIndex": 6531,
"paragraph": {
"elements": [
{
"endIndex": 6531,
"startIndex": 6500,
"textRun": {
"content": " meta 1.8.0 (1.9.0 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6500
},
{
"endIndex": 6562,
"paragraph": {
"elements": [
{
"endIndex": 6562,
"startIndex": 6531,
"textRun": {
"content": " path 1.8.2 (1.8.3 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6531
},
{
"endIndex": 6595,
"paragraph": {
"elements": [
{
"endIndex": 6595,
"startIndex": 6562,
"textRun": {
"content": " test 1.22.0 (1.23.0 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6562
},
{
"endIndex": 6632,
"paragraph": {
"elements": [
{
"endIndex": 6632,
"startIndex": 6595,
"textRun": {
"content": " test_api 0.4.16 (0.4.18 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6595
},
{
"endIndex": 6670,
"paragraph": {
"elements": [
{
"endIndex": 6670,
"startIndex": 6632,
"textRun": {
"content": " test_core 0.4.20 (0.4.23 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6632
},
{
"endIndex": 6708,
"paragraph": {
"elements": [
{
"endIndex": 6708,
"startIndex": 6670,
"textRun": {
"content": " vm_service 9.4.0 (11.0.1 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6670
},
{
"endIndex": 6744,
"paragraph": {
"elements": [
{
"endIndex": 6744,
"startIndex": 6708,
"textRun": {
"content": " webdriver 3.0.1 (3.0.2 available)\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6708
},
{
"endIndex": 6768,
"paragraph": {
"elements": [
{
"endIndex": 6768,
"startIndex": 6744,
"textRun": {
"content": "Changed 2 dependencies!\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6744
}
],
"endIndex": 6768,
"startIndex": 6242,
"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": 6770,
"paragraph": {
"elements": [
{
"endIndex": 6770,
"startIndex": 6769,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6769
},
{
"endIndex": 6842,
"paragraph": {
"elements": [
{
"endIndex": 6828,
"startIndex": 6770,
"textRun": {
"content": "The following dependencies should have been added to your ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 6840,
"startIndex": 6828,
"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/main/testing_codelab/step_03/pubspec.yaml"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 6842,
"startIndex": 6840,
"textRun": {
"content": ":\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6770
},
{
"endIndex": 6862,
"paragraph": {
"elements": [
{
"endIndex": 6848,
"startIndex": 6842,
"textRun": {
"content": "Under ",
"textStyle": {}
}
},
{
"endIndex": 6860,
"startIndex": 6848,
"textRun": {
"content": "dependencies",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 6862,
"startIndex": 6860,
"textRun": {
"content": ":\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 6842
},
{
"endIndex": 6919,
"startIndex": 6862,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 6918,
"startIndex": 6863,
"tableCells": [
{
"content": [
{
"endIndex": 6879,
"paragraph": {
"elements": [
{
"endIndex": 6879,
"startIndex": 6865,
"textRun": {
"content": "dependencies:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6865
},
{
"endIndex": 6898,
"paragraph": {
"elements": [
{
"endIndex": 6898,
"startIndex": 6879,
"textRun": {
"content": " provider: ^6.0.5\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6879
},
{
"endIndex": 6918,
"paragraph": {
"elements": [
{
"endIndex": 6918,
"startIndex": 6898,
"textRun": {
"content": " go_router: ^6.0.4\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6898
}
],
"endIndex": 6918,
"startIndex": 6864,
"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": 6920,
"paragraph": {
"elements": [
{
"endIndex": 6920,
"startIndex": 6919,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6919
},
{
"endIndex": 6944,
"paragraph": {
"elements": [
{
"endIndex": 6926,
"startIndex": 6920,
"textRun": {
"content": "Under ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 6942,
"startIndex": 6926,
"textRun": {
"content": "dev_dependencies",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 6944,
"startIndex": 6942,
"textRun": {
"content": ":\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6920
},
{
"endIndex": 6945,
"paragraph": {
"elements": [
{
"endIndex": 6945,
"startIndex": 6944,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 6944
},
{
"endIndex": 7055,
"startIndex": 6945,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 7054,
"startIndex": 6946,
"tableCells": [
{
"content": [
{
"endIndex": 6966,
"paragraph": {
"elements": [
{
"endIndex": 6966,
"startIndex": 6948,
"textRun": {
"content": "dev_dependencies:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6948
},
{
"endIndex": 6986,
"paragraph": {
"elements": [
{
"endIndex": 6986,
"startIndex": 6966,
"textRun": {
"content": " integration_test:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6966
},
{
"endIndex": 7003,
"paragraph": {
"elements": [
{
"endIndex": 7003,
"startIndex": 6986,
"textRun": {
"content": " sdk: flutter\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 6986
},
{
"endIndex": 7021,
"paragraph": {
"elements": [
{
"endIndex": 7021,
"startIndex": 7003,
"textRun": {
"content": " flutter_driver:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 7003
},
{
"endIndex": 7038,
"paragraph": {
"elements": [
{
"endIndex": 7038,
"startIndex": 7021,
"textRun": {
"content": " sdk: flutter\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 7021
},
{
"endIndex": 7054,
"paragraph": {
"elements": [
{
"endIndex": 7054,
"startIndex": 7038,
"textRun": {
"content": " test: ^1.22.0\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 7038
}
],
"endIndex": 7054,
"startIndex": 6947,
"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": 7056,
"paragraph": {
"elements": [
{
"endIndex": 7056,
"startIndex": 7055,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7055
},
{
"endIndex": 7057,
"paragraph": {
"elements": [
{
"endIndex": 7057,
"startIndex": 7056,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7056
},
{
"endIndex": 7177,
"paragraph": {
"elements": [
{
"endIndex": 7058,
"inlineObjectElement": {
"inlineObjectId": "kix.r3zi00euxfm9",
"textStyle": {}
},
"startIndex": 7057
},
{
"endIndex": 7083,
"startIndex": 7058,
"textRun": {
"content": "Open the project in your ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 7094,
"startIndex": 7083,
"textRun": {
"content": "code editor",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://docs.flutter.dev/get-started/editor"
},
"underline": true
}
}
},
{
"endIndex": 7176,
"startIndex": 7094,
"textRun": {
"content": " of choice, and run the app. Alternatively, run it on the command line as follows.",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 7177,
"startIndex": 7176,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7057
},
{
"endIndex": 7178,
"paragraph": {
"elements": [
{
"endIndex": 7178,
"startIndex": 7177,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7177
},
{
"endIndex": 7196,
"startIndex": 7178,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 7195,
"startIndex": 7179,
"tableCells": [
{
"content": [
{
"endIndex": 7195,
"paragraph": {
"elements": [
{
"endIndex": 7195,
"startIndex": 7181,
"textRun": {
"content": "$ flutter run\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Consolas",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 7181
}
],
"endIndex": 7195,
"startIndex": 7180,
"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": {
"magnitude": 24.75,
"unit": "PT"
}
}
}
],
"tableStyle": {
"tableColumnProperties": [
{
"widthType": "EVENLY_DISTRIBUTED"
}
]
}
}
},
{
"endIndex": 7197,
"paragraph": {
"elements": [
{
"endIndex": 7197,
"startIndex": 7196,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7196
},
{
"endIndex": 7198,
"paragraph": {
"elements": [
{
"endIndex": 7198,
"startIndex": 7197,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 7197
},
{
"endIndex": 7212,
"paragraph": {
"elements": [
{
"endIndex": 7212,
"startIndex": 7198,
"textRun": {
"content": "Build the app\n",
"textStyle": {
"fontSize": {
"magnitude": 18.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.btmxwf909kks",
"namedStyleType": "HEADING_1",
"pageBreakBefore": false
}
},
"startIndex": 7198
},
{
"endIndex": 7228,
"paragraph": {
"elements": [
{
"endIndex": 7227,
"startIndex": 7212,
"textRun": {
"content": "Duration: 10:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 7228,
"startIndex": 7227,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 7212
},
{
"endIndex": 7229,
"paragraph": {
"elements": [
{
"endIndex": 7229,
"startIndex": 7228,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 7228
},
{
"endIndex": 7323,
"paragraph": {
"elements": [
{
"endIndex": 7323,
"startIndex": 7229,
"textRun": {
"content": "Next, you’ll build out the app so that you can test it. The app contains the following files:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 7229
},
{
"endIndex": 7394,
"paragraph": {
"bullet": {
"listId": "kix.5u3z80370s2t",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 7348,
"startIndex": 7323,
"textRun": {
"content": "lib/models/favorites.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7394,
"startIndex": 7348,
"textRun": {
"content": " - creates the model class for favorites list\n",
"textStyle": {}
}
}
],
"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": 7323
},
{
"endIndex": 7465,
"paragraph": {
"bullet": {
"listId": "kix.5u3z80370s2t",
"textStyle": {}
},
"elements": [
{
"endIndex": 7420,
"startIndex": 7394,
"textRun": {
"content": "lib/screens/favorites.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7465,
"startIndex": 7420,
"textRun": {
"content": " - creates the layout for the favorites list\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 7394
},
{
"endIndex": 7513,
"paragraph": {
"bullet": {
"listId": "kix.5u3z80370s2t",
"textStyle": {}
},
"elements": [
{
"endIndex": 7486,
"startIndex": 7465,
"textRun": {
"content": "lib/screens/home.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7513,
"startIndex": 7486,
"textRun": {
"content": " - creates a list of items\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 7465
},
{
"endIndex": 7564,
"paragraph": {
"bullet": {
"listId": "kix.5u3z80370s2t",
"textStyle": {}
},
"elements": [
{
"endIndex": 7526,
"startIndex": 7513,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7564,
"startIndex": 7526,
"textRun": {
"content": " - the main file where the app starts\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 7513
},
{
"endIndex": 7565,
"paragraph": {
"elements": [
{
"endIndex": 7565,
"startIndex": 7564,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"indentFirstLine": {
"magnitude": 36.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 7564
},
{
"endIndex": 7628,
"paragraph": {
"elements": [
{
"endIndex": 7583,
"startIndex": 7565,
"textRun": {
"content": "First, create the ",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 7592,
"startIndex": 7583,
"textRun": {
"content": "Favorites",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7602,
"startIndex": 7592,
"textRun": {
"content": " model in ",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 7628,
"startIndex": 7602,
"textRun": {
"content": "lib/models/favorites.dart\n",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.vhrv5dclm5vw",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 7565
},
{
"endIndex": 7629,
"paragraph": {
"elements": [
{
"endIndex": 7629,
"startIndex": 7628,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7628
},
{
"endIndex": 7775,
"paragraph": {
"elements": [
{
"endIndex": 7630,
"inlineObjectElement": {
"inlineObjectId": "kix.1bbevp73nnto",
"textStyle": {}
},
"startIndex": 7629
},
{
"endIndex": 7660,
"startIndex": 7630,
"textRun": {
"content": "Create a new directory named ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 7666,
"startIndex": 7660,
"textRun": {
"content": "models",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7674,
"startIndex": 7666,
"textRun": {
"content": " in the ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 7677,
"startIndex": 7674,
"textRun": {
"content": "lib",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7722,
"startIndex": 7677,
"textRun": {
"content": " directory, and then create a new file named ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 7736,
"startIndex": 7722,
"textRun": {
"content": "favorites.dart",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 7774,
"startIndex": 7736,
"textRun": {
"content": ". In that file add the following code:",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 7775,
"startIndex": 7774,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7629
},
{
"endIndex": 7776,
"paragraph": {
"elements": [
{
"endIndex": 7776,
"startIndex": 7775,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 7775
},
{
"endIndex": 7802,
"paragraph": {
"elements": [
{
"endIndex": 7801,
"startIndex": 7776,
"textRun": {
"content": "lib/models/favorites.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/testing_codelab/step_04/lib/models/favorites.dart"
},
"underline": true
}
}
},
{
"endIndex": 7802,
"startIndex": 7801,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.lsviuhkhdr2",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 7776
},
{
"endIndex": 8223,
"startIndex": 7802,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 8222,
"startIndex": 7803,
"tableCells": [
{
"content": [
{
"endIndex": 7845,
"paragraph": {
"elements": [
{
"endIndex": 7845,
"startIndex": 7805,
"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",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 7805
},
{
"endIndex": 7846,
"paragraph": {
"elements": [
{
"endIndex": 7846,
"startIndex": 7845,
"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": 7845
},
{
"endIndex": 7922,
"paragraph": {
"elements": [
{
"endIndex": 7922,
"startIndex": 7846,
"textRun": {
"content": "/// The [Favorites] class holds a list of favorite items saved by the user.\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": 7846
},
{
"endIndex": 7963,
"paragraph": {
"elements": [
{
"endIndex": 7963,
"startIndex": 7922,
"textRun": {
"content": "class Favorites extends ChangeNotifier {\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": 7922
},
{
"endIndex": 8002,
"paragraph": {
"elements": [
{
"endIndex": 8002,
"startIndex": 7963,
"textRun": {
"content": " final List<int> _favoriteItems = [];\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": 7963
},
{
"endIndex": 8003,
"paragraph": {
"elements": [
{
"endIndex": 8003,
"startIndex": 8002,
"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": 8002
},
{
"endIndex": 8044,
"paragraph": {
"elements": [
{
"endIndex": 8044,
"startIndex": 8003,
"textRun": {
"content": " List<int> get items => _favoriteItems;\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": 8003
},
{
"endIndex": 8045,
"paragraph": {
"elements": [
{
"endIndex": 8045,
"startIndex": 8044,
"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": 8044
},
{
"endIndex": 8070,
"paragraph": {
"elements": [
{
"endIndex": 8070,
"startIndex": 8045,
"textRun": {
"content": " void add(int itemNo) {\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": 8045
},
{
"endIndex": 8102,
"paragraph": {
"elements": [
{
"endIndex": 8102,
"startIndex": 8070,
"textRun": {
"content": " _favoriteItems.add(itemNo);\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": 8070
},
{
"endIndex": 8125,
"paragraph": {
"elements": [
{
"endIndex": 8125,
"startIndex": 8102,
"textRun": {
"content": " notifyListeners();\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": 8102
},
{
"endIndex": 8129,
"paragraph": {
"elements": [
{
"endIndex": 8129,
"startIndex": 8125,
"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": 8125
},
{
"endIndex": 8130,
"paragraph": {
"elements": [
{
"endIndex": 8130,
"startIndex": 8129,
"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": 8129
},
{
"endIndex": 8158,
"paragraph": {
"elements": [
{
"endIndex": 8158,
"startIndex": 8130,
"textRun": {
"content": " void remove(int itemNo) {\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": 8130
},
{
"endIndex": 8193,
"paragraph": {
"elements": [
{
"endIndex": 8193,
"startIndex": 8158,
"textRun": {
"content": " _favoriteItems.remove(itemNo);\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": 8158
},
{
"endIndex": 8216,
"paragraph": {
"elements": [
{
"endIndex": 8216,
"startIndex": 8193,
"textRun": {
"content": " notifyListeners();\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": 8193
},
{
"endIndex": 8220,
"paragraph": {
"elements": [
{
"endIndex": 8220,
"startIndex": 8216,
"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": 8216
},
{
"endIndex": 8222,
"paragraph": {
"elements": [
{
"endIndex": 8222,
"startIndex": 8220,
"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": 8220
}
],
"endIndex": 8222,
"startIndex": 7804,
"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": 8224,
"paragraph": {
"elements": [
{
"endIndex": 8224,
"startIndex": 8223,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8223
},
{
"endIndex": 8277,
"paragraph": {
"elements": [
{
"endIndex": 8232,
"startIndex": 8224,
"textRun": {
"content": "Add the ",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 8241,
"startIndex": 8232,
"textRun": {
"content": "Favorites",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 8250,
"startIndex": 8241,
"textRun": {
"content": " page in ",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 8276,
"startIndex": 8250,
"textRun": {
"content": "lib/screens/favorites.dart",
"textStyle": {
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8277,
"startIndex": 8276,
"textRun": {
"content": "\n",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.qzgctyugqfot",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 8224
},
{
"endIndex": 8278,
"paragraph": {
"elements": [
{
"endIndex": 8278,
"startIndex": 8277,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8277
},
{
"endIndex": 8437,
"paragraph": {
"elements": [
{
"endIndex": 8279,
"inlineObjectElement": {
"inlineObjectId": "kix.m7tljkfuu9rn",
"textStyle": {}
},
"startIndex": 8278
},
{
"endIndex": 8308,
"startIndex": 8279,
"textRun": {
"content": "Create a new directory named ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 8315,
"startIndex": 8308,
"textRun": {
"content": "screens",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8323,
"startIndex": 8315,
"textRun": {
"content": " in the ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 8326,
"startIndex": 8323,
"textRun": {
"content": "lib",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8384,
"startIndex": 8326,
"textRun": {
"content": " directory, and in that directory create a new file named ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 8398,
"startIndex": 8384,
"textRun": {
"content": "favorites.dart",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 8437,
"startIndex": 8398,
"textRun": {
"content": ". In that file add the following code:\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8278
},
{
"endIndex": 8438,
"paragraph": {
"elements": [
{
"endIndex": 8438,
"startIndex": 8437,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 8437
},
{
"endIndex": 8465,
"paragraph": {
"elements": [
{
"endIndex": 8464,
"startIndex": 8438,
"textRun": {
"content": "lib/screens/favorites.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/testing_codelab/step_04/lib/screens/favorites.dart"
},
"underline": true
}
}
},
{
"endIndex": 8465,
"startIndex": 8464,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.sgii43wa0h80",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 8438
},
{
"endIndex": 10141,
"startIndex": 8465,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 10140,
"startIndex": 8466,
"tableCells": [
{
"content": [
{
"endIndex": 8508,
"paragraph": {
"elements": [
{
"endIndex": 8508,
"startIndex": 8468,
"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",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8468
},
{
"endIndex": 8549,
"paragraph": {
"elements": [
{
"endIndex": 8549,
"startIndex": 8508,
"textRun": {
"content": "import 'package:provider/provider.dart';\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": 8508
},
{
"endIndex": 8550,
"paragraph": {
"elements": [
{
"endIndex": 8550,
"startIndex": 8549,
"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": 8549
},
{
"endIndex": 8585,
"paragraph": {
"elements": [
{
"endIndex": 8585,
"startIndex": 8550,
"textRun": {
"content": "import '../models/favorites.dart';\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": 8550
},
{
"endIndex": 8586,
"paragraph": {
"elements": [
{
"endIndex": 8586,
"startIndex": 8585,
"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": 8585
},
{
"endIndex": 8632,
"paragraph": {
"elements": [
{
"endIndex": 8632,
"startIndex": 8586,
"textRun": {
"content": "class FavoritesPage extends StatelessWidget {\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": 8586
},
{
"endIndex": 8668,
"paragraph": {
"elements": [
{
"endIndex": 8668,
"startIndex": 8632,
"textRun": {
"content": " const FavoritesPage({super.key});\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": 8632
},
{
"endIndex": 8669,
"paragraph": {
"elements": [
{
"endIndex": 8669,
"startIndex": 8668,
"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": 8668
},
{
"endIndex": 8715,
"paragraph": {
"elements": [
{
"endIndex": 8715,
"startIndex": 8669,
"textRun": {
"content": " static String routeName = 'favorites_page';\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": 8669
},
{
"endIndex": 8716,
"paragraph": {
"elements": [
{
"endIndex": 8716,
"startIndex": 8715,
"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": 8715
},
{
"endIndex": 8728,
"paragraph": {
"elements": [
{
"endIndex": 8728,
"startIndex": 8716,
"textRun": {
"content": " @override\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": 8716
},
{
"endIndex": 8767,
"paragraph": {
"elements": [
{
"endIndex": 8767,
"startIndex": 8728,
"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",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8728
},
{
"endIndex": 8788,
"paragraph": {
"elements": [
{
"endIndex": 8788,
"startIndex": 8767,
"textRun": {
"content": " return Scaffold(\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": 8767
},
{
"endIndex": 8810,
"paragraph": {
"elements": [
{
"endIndex": 8810,
"startIndex": 8788,
"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",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 8788
},
{
"endIndex": 8850,
"paragraph": {
"elements": [
{
"endIndex": 8850,
"startIndex": 8810,
"textRun": {
"content": " title: const Text('Favorites'),\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": 8810
},
{
"endIndex": 8859,
"paragraph": {
"elements": [
{
"endIndex": 8859,
"startIndex": 8850,
"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": 8850
},
{
"endIndex": 8892,
"paragraph": {
"elements": [
{
"endIndex": 8892,
"startIndex": 8859,
"textRun": {
"content": " body: Consumer<Favorites>(\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": 8859
},
{
"endIndex": 8954,
"paragraph": {
"elements": [
{
"endIndex": 8954,
"startIndex": 8892,
"textRun": {
"content": " builder: (context, value, child) => ListView.builder(\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": 8892
},
{
"endIndex": 8995,
"paragraph": {
"elements": [
{
"endIndex": 8995,
"startIndex": 8954,
"textRun": {
"content": " itemCount: value.items.length,\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": 8954
},
{
"endIndex": 9056,
"paragraph": {
"elements": [
{
"endIndex": 9056,
"startIndex": 8995,
"textRun": {
"content": " padding: const EdgeInsets.symmetric(vertical: 16),\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": 8995
},
{
"endIndex": 9137,
"paragraph": {
"elements": [
{
"endIndex": 9137,
"startIndex": 9056,
"textRun": {
"content": " itemBuilder: (context, index) => FavoriteItemTile(value.items[index]),\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": 9056
},
{
"endIndex": 9148,
"paragraph": {
"elements": [
{
"endIndex": 9148,
"startIndex": 9137,
"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": 9137
},
{
"endIndex": 9157,
"paragraph": {
"elements": [
{
"endIndex": 9157,
"startIndex": 9148,
"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": 9148
},
{
"endIndex": 9164,
"paragraph": {
"elements": [
{
"endIndex": 9164,
"startIndex": 9157,
"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": 9157
},
{
"endIndex": 9168,
"paragraph": {
"elements": [
{
"endIndex": 9168,
"startIndex": 9164,
"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": 9164
},
{
"endIndex": 9170,
"paragraph": {
"elements": [
{
"endIndex": 9170,
"startIndex": 9168,
"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": 9168
},
{
"endIndex": 9171,
"paragraph": {
"elements": [
{
"endIndex": 9171,
"startIndex": 9170,
"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": 9170
},
{
"endIndex": 9220,
"paragraph": {
"elements": [
{
"endIndex": 9220,
"startIndex": 9171,
"textRun": {
"content": "class FavoriteItemTile extends StatelessWidget {\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": 9171
},
{
"endIndex": 9272,
"paragraph": {
"elements": [
{
"endIndex": 9272,
"startIndex": 9220,
"textRun": {
"content": " const FavoriteItemTile(this.itemNo, {super.key});\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": 9220
},
{
"endIndex": 9273,
"paragraph": {
"elements": [
{
"endIndex": 9273,
"startIndex": 9272,
"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": 9272
},
{
"endIndex": 9293,
"paragraph": {
"elements": [
{
"endIndex": 9293,
"startIndex": 9273,
"textRun": {
"content": " final int itemNo;\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": 9273
},
{
"endIndex": 9294,
"paragraph": {
"elements": [
{
"endIndex": 9294,
"startIndex": 9293,
"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": 9293
},
{
"endIndex": 9306,
"paragraph": {
"elements": [
{
"endIndex": 9306,
"startIndex": 9294,
"textRun": {
"content": " @override\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": 9294
},
{
"endIndex": 9345,
"paragraph": {
"elements": [
{
"endIndex": 9345,
"startIndex": 9306,
"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",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 9306
},
{
"endIndex": 9365,
"paragraph": {
"elements": [
{
"endIndex": 9365,
"startIndex": 9345,
"textRun": {
"content": " return Padding(\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": 9345
},
{
"endIndex": 9407,
"paragraph": {
"elements": [
{
"endIndex": 9407,
"startIndex": 9365,
"textRun": {
"content": " padding: const EdgeInsets.all(8.0),\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": 9365
},
{
"endIndex": 9430,
"paragraph": {
"elements": [
{
"endIndex": 9430,
"startIndex": 9407,
"textRun": {
"content": " child: ListTile(\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": 9407
},
{
"endIndex": 9461,
"paragraph": {
"elements": [
{
"endIndex": 9461,
"startIndex": 9430,
"textRun": {
"content": " leading: CircleAvatar(\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": 9430
},
{
"endIndex": 9540,
"paragraph": {
"elements": [
{
"endIndex": 9540,
"startIndex": 9461,
"textRun": {
"content": " backgroundColor: Colors.primaries[itemNo % Colors.primaries.length],\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": 9461
},
{
"endIndex": 9551,
"paragraph": {
"elements": [
{
"endIndex": 9551,
"startIndex": 9540,
"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": 9540
},
{
"endIndex": 9572,
"paragraph": {
"elements": [
{
"endIndex": 9572,
"startIndex": 9551,
"textRun": {
"content": " title: Text(\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": 9551
},
{
"endIndex": 9598,
"paragraph": {
"elements": [
{
"endIndex": 9598,
"startIndex": 9572,
"textRun": {
"content": " 'Item $itemNo',\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": 9572
},
{
"endIndex": 9644,
"paragraph": {
"elements": [
{
"endIndex": 9644,
"startIndex": 9598,
"textRun": {
"content": " key: Key('favorites_text_$itemNo'),\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": 9598
},
{
"endIndex": 9655,
"paragraph": {
"elements": [
{
"endIndex": 9655,
"startIndex": 9644,
"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": 9644
},
{
"endIndex": 9685,
"paragraph": {
"elements": [
{
"endIndex": 9685,
"startIndex": 9655,
"textRun": {
"content": " trailing: IconButton(\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": 9655
},
{
"endIndex": 9728,
"paragraph": {
"elements": [
{
"endIndex": 9728,
"startIndex": 9685,
"textRun": {
"content": " key: Key('remove_icon_$itemNo'),\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": 9685
},
{
"endIndex": 9769,
"paragraph": {
"elements": [
{
"endIndex": 9769,
"startIndex": 9728,
"textRun": {
"content": " icon: const Icon(Icons.close),\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": 9728
},
{
"endIndex": 9795,
"paragraph": {
"elements": [
{
"endIndex": 9795,
"startIndex": 9769,
"textRun": {
"content": " onPressed: () {\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": 9769
},
{
"endIndex": 9870,
"paragraph": {
"elements": [
{
"endIndex": 9870,
"startIndex": 9795,
"textRun": {
"content": " Provider.of<Favorites>(context, listen: false).remove(itemNo);\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": 9795
},
{
"endIndex": 9926,
"paragraph": {
"elements": [
{
"endIndex": 9926,
"startIndex": 9870,
"textRun": {
"content": " ScaffoldMessenger.of(context).showSnackBar(\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": 9870
},
{
"endIndex": 9956,
"paragraph": {
"elements": [
{
"endIndex": 9956,
"startIndex": 9926,
"textRun": {
"content": " const SnackBar(\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": 9926
},
{
"endIndex": 10014,
"paragraph": {
"elements": [
{
"endIndex": 10014,
"startIndex": 9956,
"textRun": {
"content": " content: Text('Removed from favorites.'),\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": 9956
},
{
"endIndex": 10062,
"paragraph": {
"elements": [
{
"endIndex": 10062,
"startIndex": 10014,
"textRun": {
"content": " duration: Duration(seconds: 1),\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": 10014
},
{
"endIndex": 10079,
"paragraph": {
"elements": [
{
"endIndex": 10079,
"startIndex": 10062,
"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": 10062
},
{
"endIndex": 10094,
"paragraph": {
"elements": [
{
"endIndex": 10094,
"startIndex": 10079,
"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": 10079
},
{
"endIndex": 10107,
"paragraph": {
"elements": [
{
"endIndex": 10107,
"startIndex": 10094,
"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": 10094
},
{
"endIndex": 10118,
"paragraph": {
"elements": [
{
"endIndex": 10118,
"startIndex": 10107,
"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": 10107
},
{
"endIndex": 10127,
"paragraph": {
"elements": [
{
"endIndex": 10127,
"startIndex": 10118,
"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": 10118
},
{
"endIndex": 10134,
"paragraph": {
"elements": [
{
"endIndex": 10134,
"startIndex": 10127,
"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": 10127
},
{
"endIndex": 10138,
"paragraph": {
"elements": [
{
"endIndex": 10138,
"startIndex": 10134,
"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": 10134
},
{
"endIndex": 10140,
"paragraph": {
"elements": [
{
"endIndex": 10140,
"startIndex": 10138,
"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": 10138
}
],
"endIndex": 10140,
"startIndex": 8467,
"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": 10142,
"paragraph": {
"elements": [
{
"endIndex": 10142,
"startIndex": 10141,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 10141
},
{
"endIndex": 10185,
"paragraph": {
"elements": [
{
"endIndex": 10150,
"startIndex": 10142,
"textRun": {
"content": "Add the ",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 10154,
"startIndex": 10150,
"textRun": {
"content": "Home",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 10163,
"startIndex": 10154,
"textRun": {
"content": " page in ",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 10184,
"startIndex": 10163,
"textRun": {
"content": "lib/screens/home.dart",
"textStyle": {
"bold": false,
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 10185,
"startIndex": 10184,
"textRun": {
"content": "\n",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.lmxxfjfy7j9r",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 10142
},
{
"endIndex": 10186,
"paragraph": {
"elements": [
{
"endIndex": 10186,
"startIndex": 10185,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 10185
},
{
"endIndex": 10306,
"paragraph": {
"elements": [
{
"endIndex": 10187,
"inlineObjectElement": {
"inlineObjectId": "kix.p6jnzf8drcum",
"textStyle": {}
},
"startIndex": 10186
},
{
"endIndex": 10194,
"startIndex": 10187,
"textRun": {
"content": "In the ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 10205,
"startIndex": 10194,
"textRun": {
"content": "lib/screens",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 10246,
"startIndex": 10205,
"textRun": {
"content": " directory create another new file named ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 10255,
"startIndex": 10246,
"textRun": {
"content": "home.dart",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 10260,
"startIndex": 10255,
"textRun": {
"content": ". In ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 10281,
"startIndex": 10260,
"textRun": {
"content": "lib/screens/home.dart",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 10305,
"startIndex": 10281,
"textRun": {
"content": " add the following code:",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 10306,
"startIndex": 10305,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 10186
},
{
"endIndex": 10307,
"paragraph": {
"elements": [
{
"endIndex": 10307,
"startIndex": 10306,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 10306
},
{
"endIndex": 10329,
"paragraph": {
"elements": [
{
"endIndex": 10328,
"startIndex": 10307,
"textRun": {
"content": "lib/screens/home.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/testing_codelab/step_04/lib/screens/home.dart"
},
"underline": true
}
}
},
{
"endIndex": 10329,
"startIndex": 10328,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.gdhfwytw20p7",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 10307
},
{
"endIndex": 12539,
"startIndex": 10329,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 12538,
"startIndex": 10330,
"tableCells": [
{
"content": [
{
"endIndex": 10372,
"paragraph": {
"elements": [
{
"endIndex": 10372,
"startIndex": 10332,
"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",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10332
},
{
"endIndex": 10415,
"paragraph": {
"elements": [
{
"endIndex": 10415,
"startIndex": 10372,
"textRun": {
"content": "import 'package:go_router/go_router.dart';\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": 10372
},
{
"endIndex": 10456,
"paragraph": {
"elements": [
{
"endIndex": 10456,
"startIndex": 10415,
"textRun": {
"content": "import 'package:provider/provider.dart';\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": 10415
},
{
"endIndex": 10491,
"paragraph": {
"elements": [
{
"endIndex": 10491,
"startIndex": 10456,
"textRun": {
"content": "import '../models/favorites.dart';\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": 10456
},
{
"endIndex": 10516,
"paragraph": {
"elements": [
{
"endIndex": 10516,
"startIndex": 10491,
"textRun": {
"content": "import 'favorites.dart';\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": 10491
},
{
"endIndex": 10517,
"paragraph": {
"elements": [
{
"endIndex": 10517,
"startIndex": 10516,
"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": 10516
},
{
"endIndex": 10558,
"paragraph": {
"elements": [
{
"endIndex": 10558,
"startIndex": 10517,
"textRun": {
"content": "class HomePage extends StatelessWidget {\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": 10517
},
{
"endIndex": 10591,
"paragraph": {
"elements": [
{
"endIndex": 10591,
"startIndex": 10558,
"textRun": {
"content": " static String routeName = '/';\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": 10558
},
{
"endIndex": 10592,
"paragraph": {
"elements": [
{
"endIndex": 10592,
"startIndex": 10591,
"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": 10591
},
{
"endIndex": 10623,
"paragraph": {
"elements": [
{
"endIndex": 10623,
"startIndex": 10592,
"textRun": {
"content": " const HomePage({super.key});\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": 10592
},
{
"endIndex": 10624,
"paragraph": {
"elements": [
{
"endIndex": 10624,
"startIndex": 10623,
"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": 10623
},
{
"endIndex": 10636,
"paragraph": {
"elements": [
{
"endIndex": 10636,
"startIndex": 10624,
"textRun": {
"content": " @override\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": 10624
},
{
"endIndex": 10675,
"paragraph": {
"elements": [
{
"endIndex": 10675,
"startIndex": 10636,
"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",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10636
},
{
"endIndex": 10696,
"paragraph": {
"elements": [
{
"endIndex": 10696,
"startIndex": 10675,
"textRun": {
"content": " return Scaffold(\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": 10675
},
{
"endIndex": 10718,
"paragraph": {
"elements": [
{
"endIndex": 10718,
"startIndex": 10696,
"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",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 10696
},
{
"endIndex": 10763,
"paragraph": {
"elements": [
{
"endIndex": 10763,
"startIndex": 10718,
"textRun": {
"content": " title: const Text('Testing Sample'),\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": 10718
},
{
"endIndex": 10790,
"paragraph": {
"elements": [
{
"endIndex": 10790,
"startIndex": 10763,
"textRun": {
"content": " actions: <Widget>[\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": 10763
},
{
"endIndex": 10817,
"paragraph": {
"elements": [
{
"endIndex": 10817,
"startIndex": 10790,
"textRun": {
"content": " TextButton.icon(\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": 10790
},
{
"endIndex": 10845,
"paragraph": {
"elements": [
{
"endIndex": 10845,
"startIndex": 10817,
"textRun": {
"content": " onPressed: () {\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": 10817
},
{
"endIndex": 10902,
"paragraph": {
"elements": [
{
"endIndex": 10902,
"startIndex": 10845,
"textRun": {
"content": " context.go('/${FavoritesPage.routeName}');\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": 10845
},
{
"endIndex": 10917,
"paragraph": {
"elements": [
{
"endIndex": 10917,
"startIndex": 10902,
"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": 10902
},
{
"endIndex": 10970,
"paragraph": {
"elements": [
{
"endIndex": 10970,
"startIndex": 10917,
"textRun": {
"content": " icon: const Icon(Icons.favorite_border),\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": 10917
},
{
"endIndex": 11014,
"paragraph": {
"elements": [
{
"endIndex": 11014,
"startIndex": 10970,
"textRun": {
"content": " label: const Text('Favorites'),\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": 10970
},
{
"endIndex": 11027,
"paragraph": {
"elements": [
{
"endIndex": 11027,
"startIndex": 11014,
"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": 11014
},
{
"endIndex": 11038,
"paragraph": {
"elements": [
{
"endIndex": 11038,
"startIndex": 11027,
"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": 11027
},
{
"endIndex": 11047,
"paragraph": {
"elements": [
{
"endIndex": 11047,
"startIndex": 11038,
"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": 11038
},
{
"endIndex": 11077,
"paragraph": {
"elements": [
{
"endIndex": 11077,
"startIndex": 11047,
"textRun": {
"content": " body: ListView.builder(\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": 11047
},
{
"endIndex": 11101,
"paragraph": {
"elements": [
{
"endIndex": 11101,
"startIndex": 11077,
"textRun": {
"content": " itemCount: 100,\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": 11077
},
{
"endIndex": 11128,
"paragraph": {
"elements": [
{
"endIndex": 11128,
"startIndex": 11101,
"textRun": {
"content": " cacheExtent: 20.0,\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": 11101
},
{
"endIndex": 11187,
"paragraph": {
"elements": [
{
"endIndex": 11187,
"startIndex": 11128,
"textRun": {
"content": " padding: const EdgeInsets.symmetric(vertical: 16),\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": 11128
},
{
"endIndex": 11245,
"paragraph": {
"elements": [
{
"endIndex": 11245,
"startIndex": 11187,
"textRun": {
"content": " itemBuilder: (context, index) => ItemTile(index),\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": 11187
},
{
"endIndex": 11254,
"paragraph": {
"elements": [
{
"endIndex": 11254,
"startIndex": 11245,
"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": 11245
},
{
"endIndex": 11261,
"paragraph": {
"elements": [
{
"endIndex": 11261,
"startIndex": 11254,
"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": 11254
},
{
"endIndex": 11265,
"paragraph": {
"elements": [
{
"endIndex": 11265,
"startIndex": 11261,
"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": 11261
},
{
"endIndex": 11267,
"paragraph": {
"elements": [
{
"endIndex": 11267,
"startIndex": 11265,
"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": 11265
},
{
"endIndex": 11268,
"paragraph": {
"elements": [
{
"endIndex": 11268,
"startIndex": 11267,
"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": 11267
},
{
"endIndex": 11309,
"paragraph": {
"elements": [
{
"endIndex": 11309,
"startIndex": 11268,
"textRun": {
"content": "class ItemTile extends StatelessWidget {\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": 11268
},
{
"endIndex": 11329,
"paragraph": {
"elements": [
{
"endIndex": 11329,
"startIndex": 11309,
"textRun": {
"content": " final int itemNo;\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": 11309
},
{
"endIndex": 11330,
"paragraph": {
"elements": [
{
"endIndex": 11330,
"startIndex": 11329,
"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": 11329
},
{
"endIndex": 11374,
"paragraph": {
"elements": [
{
"endIndex": 11374,
"startIndex": 11330,
"textRun": {
"content": " const ItemTile(this.itemNo, {super.key});\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": 11330
},
{
"endIndex": 11375,
"paragraph": {
"elements": [
{
"endIndex": 11375,
"startIndex": 11374,
"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": 11374
},
{
"endIndex": 11387,
"paragraph": {
"elements": [
{
"endIndex": 11387,
"startIndex": 11375,
"textRun": {
"content": " @override\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": 11375
},
{
"endIndex": 11426,
"paragraph": {
"elements": [
{
"endIndex": 11426,
"startIndex": 11387,
"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",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 11387
},
{
"endIndex": 11483,
"paragraph": {
"elements": [
{
"endIndex": 11483,
"startIndex": 11426,
"textRun": {
"content": " var favoritesList = Provider.of<Favorites>(context);\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": 11426
},
{
"endIndex": 11484,
"paragraph": {
"elements": [
{
"endIndex": 11484,
"startIndex": 11483,
"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": 11483
},
{
"endIndex": 11504,
"paragraph": {
"elements": [
{
"endIndex": 11504,
"startIndex": 11484,
"textRun": {
"content": " return Padding(\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": 11484
},
{
"endIndex": 11546,
"paragraph": {
"elements": [
{
"endIndex": 11546,
"startIndex": 11504,
"textRun": {
"content": " padding: const EdgeInsets.all(8.0),\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": 11504
},
{
"endIndex": 11569,
"paragraph": {
"elements": [
{
"endIndex": 11569,
"startIndex": 11546,
"textRun": {
"content": " child: ListTile(\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": 11546
},
{
"endIndex": 11600,
"paragraph": {
"elements": [
{
"endIndex": 11600,
"startIndex": 11569,
"textRun": {
"content": " leading: CircleAvatar(\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": 11569
},
{
"endIndex": 11679,
"paragraph": {
"elements": [
{
"endIndex": 11679,
"startIndex": 11600,
"textRun": {
"content": " backgroundColor: Colors.primaries[itemNo % Colors.primaries.length],\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": 11600
},
{
"endIndex": 11690,
"paragraph": {
"elements": [
{
"endIndex": 11690,
"startIndex": 11679,
"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": 11679
},
{
"endIndex": 11711,
"paragraph": {
"elements": [
{
"endIndex": 11711,
"startIndex": 11690,
"textRun": {
"content": " title: Text(\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": 11690
},
{
"endIndex": 11737,
"paragraph": {
"elements": [
{
"endIndex": 11737,
"startIndex": 11711,
"textRun": {
"content": " 'Item $itemNo',\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": 11711
},
{
"endIndex": 11773,
"paragraph": {
"elements": [
{
"endIndex": 11773,
"startIndex": 11737,
"textRun": {
"content": " key: Key('text_$itemNo'),\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": 11737
},
{
"endIndex": 11784,
"paragraph": {
"elements": [
{
"endIndex": 11784,
"startIndex": 11773,
"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": 11773
},
{
"endIndex": 11814,
"paragraph": {
"elements": [
{
"endIndex": 11814,
"startIndex": 11784,
"textRun": {
"content": " trailing: IconButton(\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": 11784
},
{
"endIndex": 11850,
"paragraph": {
"elements": [
{
"endIndex": 11850,
"startIndex": 11814,
"textRun": {
"content": " key: Key('icon_$itemNo'),\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": 11814
},
{
"endIndex": 11903,
"paragraph": {
"elements": [
{
"endIndex": 11903,
"startIndex": 11850,
"textRun": {
"content": " icon: favoritesList.items.contains(itemNo)\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": 11850
},
{
"endIndex": 11946,
"paragraph": {
"elements": [
{
"endIndex": 11946,
"startIndex": 11903,
"textRun": {
"content": " ? const Icon(Icons.favorite)\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": 11903
},
{
"endIndex": 11997,
"paragraph": {
"elements": [
{
"endIndex": 11997,
"startIndex": 11946,
"textRun": {
"content": " : const Icon(Icons.favorite_border),\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": 11946
},
{
"endIndex": 12023,
"paragraph": {
"elements": [
{
"endIndex": 12023,
"startIndex": 11997,
"textRun": {
"content": " onPressed: () {\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": 11997
},
{
"endIndex": 12073,
"paragraph": {
"elements": [
{
"endIndex": 12073,
"startIndex": 12023,
"textRun": {
"content": " !favoritesList.items.contains(itemNo)\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": 12023
},
{
"endIndex": 12117,
"paragraph": {
"elements": [
{
"endIndex": 12117,
"startIndex": 12073,
"textRun": {
"content": " ? favoritesList.add(itemNo)\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": 12073
},
{
"endIndex": 12165,
"paragraph": {
"elements": [
{
"endIndex": 12165,
"startIndex": 12117,
"textRun": {
"content": " : favoritesList.remove(itemNo);\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": 12117
},
{
"endIndex": 12221,
"paragraph": {
"elements": [
{
"endIndex": 12221,
"startIndex": 12165,
"textRun": {
"content": " ScaffoldMessenger.of(context).showSnackBar(\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": 12165
},
{
"endIndex": 12245,
"paragraph": {
"elements": [
{
"endIndex": 12245,
"startIndex": 12221,
"textRun": {
"content": " SnackBar(\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": 12221
},
{
"endIndex": 12312,
"paragraph": {
"elements": [
{
"endIndex": 12312,
"startIndex": 12245,
"textRun": {
"content": " content: Text(favoritesList.items.contains(itemNo)\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": 12245
},
{
"endIndex": 12356,
"paragraph": {
"elements": [
{
"endIndex": 12356,
"startIndex": 12312,
"textRun": {
"content": " ? 'Added to favorites.'\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": 12312
},
{
"endIndex": 12406,
"paragraph": {
"elements": [
{
"endIndex": 12406,
"startIndex": 12356,
"textRun": {
"content": " : 'Removed from favorites.'),\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": 12356
},
{
"endIndex": 12460,
"paragraph": {
"elements": [
{
"endIndex": 12460,
"startIndex": 12406,
"textRun": {
"content": " duration: const Duration(seconds: 1),\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": 12406
},
{
"endIndex": 12477,
"paragraph": {
"elements": [
{
"endIndex": 12477,
"startIndex": 12460,
"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": 12460
},
{
"endIndex": 12492,
"paragraph": {
"elements": [
{
"endIndex": 12492,
"startIndex": 12477,
"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": 12477
},
{
"endIndex": 12505,
"paragraph": {
"elements": [
{
"endIndex": 12505,
"startIndex": 12492,
"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": 12492
},
{
"endIndex": 12516,
"paragraph": {
"elements": [
{
"endIndex": 12516,
"startIndex": 12505,
"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": 12505
},
{
"endIndex": 12525,
"paragraph": {
"elements": [
{
"endIndex": 12525,
"startIndex": 12516,
"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": 12516
},
{
"endIndex": 12532,
"paragraph": {
"elements": [
{
"endIndex": 12532,
"startIndex": 12525,
"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": 12525
},
{
"endIndex": 12536,
"paragraph": {
"elements": [
{
"endIndex": 12536,
"startIndex": 12532,
"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": 12532
},
{
"endIndex": 12538,
"paragraph": {
"elements": [
{
"endIndex": 12538,
"startIndex": 12536,
"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": 12536
}
],
"endIndex": 12538,
"startIndex": 10331,
"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": 12540,
"paragraph": {
"elements": [
{
"endIndex": 12540,
"startIndex": 12539,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 12539
},
{
"endIndex": 12578,
"paragraph": {
"elements": [
{
"endIndex": 12564,
"startIndex": 12540,
"textRun": {
"content": "Replace the contents of ",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 12578,
"startIndex": 12564,
"textRun": {
"content": "lib/main.dart\n",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.2jmtlwdbzpsw",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 12540
},
{
"endIndex": 12579,
"paragraph": {
"elements": [
{
"endIndex": 12579,
"startIndex": 12578,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 12578
},
{
"endIndex": 12643,
"paragraph": {
"elements": [
{
"endIndex": 12580,
"inlineObjectElement": {
"inlineObjectId": "kix.j4cw023q65fe",
"textStyle": {}
},
"startIndex": 12579
},
{
"endIndex": 12604,
"startIndex": 12580,
"textRun": {
"content": "Replace the contents of ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 12617,
"startIndex": 12604,
"textRun": {
"content": "lib/main.dart",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 12643,
"startIndex": 12617,
"textRun": {
"content": " with the following code:\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 12579
},
{
"endIndex": 12644,
"paragraph": {
"elements": [
{
"endIndex": 12644,
"startIndex": 12643,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 12643
},
{
"endIndex": 12658,
"paragraph": {
"elements": [
{
"endIndex": 12657,
"startIndex": 12644,
"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/main/testing_codelab/step_04/lib/main.dart"
},
"underline": true
}
}
},
{
"endIndex": 12658,
"startIndex": 12657,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.xzhg8e14tk08",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 12644
},
{
"endIndex": 13727,
"startIndex": 12658,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 13726,
"startIndex": 12659,
"tableCells": [
{
"content": [
{
"endIndex": 12701,
"paragraph": {
"elements": [
{
"endIndex": 12701,
"startIndex": 12661,
"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": 12661
},
{
"endIndex": 12744,
"paragraph": {
"elements": [
{
"endIndex": 12744,
"startIndex": 12701,
"textRun": {
"content": "import 'package:go_router/go_router.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": 12701
},
{
"endIndex": 12785,
"paragraph": {
"elements": [
{
"endIndex": 12785,
"startIndex": 12744,
"textRun": {
"content": "import 'package:provider/provider.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": 12744
},
{
"endIndex": 12817,
"paragraph": {
"elements": [
{
"endIndex": 12817,
"startIndex": 12785,
"textRun": {
"content": "import 'models/favorites.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": 12785
},
{
"endIndex": 12850,
"paragraph": {
"elements": [
{
"endIndex": 12850,
"startIndex": 12817,
"textRun": {
"content": "import 'screens/favorites.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": 12817
},
{
"endIndex": 12878,
"paragraph": {
"elements": [
{
"endIndex": 12878,
"startIndex": 12850,
"textRun": {
"content": "import 'screens/home.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": 12850
},
{
"endIndex": 12879,
"paragraph": {
"elements": [
{
"endIndex": 12879,
"startIndex": 12878,
"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": 12878
},
{
"endIndex": 12893,
"paragraph": {
"elements": [
{
"endIndex": 12893,
"startIndex": 12879,
"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": 12879
},
{
"endIndex": 12923,
"paragraph": {
"elements": [
{
"endIndex": 12923,
"startIndex": 12893,
"textRun": {
"content": " runApp(const TestingApp());\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": 12893
},
{
"endIndex": 12925,
"paragraph": {
"elements": [
{
"endIndex": 12925,
"startIndex": 12923,
"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": 12923
},
{
"endIndex": 12926,
"paragraph": {
"elements": [
{
"endIndex": 12926,
"startIndex": 12925,
"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": 12925
},
{
"endIndex": 12952,
"paragraph": {
"elements": [
{
"endIndex": 12952,
"startIndex": 12926,
"textRun": {
"content": "final _router = GoRouter(\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": 12926
},
{
"endIndex": 12964,
"paragraph": {
"elements": [
{
"endIndex": 12964,
"startIndex": 12952,
"textRun": {
"content": " routes: [\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": 12952
},
{
"endIndex": 12977,
"paragraph": {
"elements": [
{
"endIndex": 12977,
"startIndex": 12964,
"textRun": {
"content": " GoRoute(\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": 12964
},
{
"endIndex": 13009,
"paragraph": {
"elements": [
{
"endIndex": 13009,
"startIndex": 12977,
"textRun": {
"content": " path: HomePage.routeName,\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": 12977
},
{
"endIndex": 13043,
"paragraph": {
"elements": [
{
"endIndex": 13043,
"startIndex": 13009,
"textRun": {
"content": " builder: (context, state) {\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": 13009
},
{
"endIndex": 13076,
"paragraph": {
"elements": [
{
"endIndex": 13076,
"startIndex": 13043,
"textRun": {
"content": " return const HomePage();\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": 13043
},
{
"endIndex": 13085,
"paragraph": {
"elements": [
{
"endIndex": 13085,
"startIndex": 13076,
"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": 13076
},
{
"endIndex": 13101,
"paragraph": {
"elements": [
{
"endIndex": 13101,
"startIndex": 13085,
"textRun": {
"content": " routes: [\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": 13085
},
{
"endIndex": 13118,
"paragraph": {
"elements": [
{
"endIndex": 13118,
"startIndex": 13101,
"textRun": {
"content": " GoRoute(\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": 13101
},
{
"endIndex": 13159,
"paragraph": {
"elements": [
{
"endIndex": 13159,
"startIndex": 13118,
"textRun": {
"content": " path: FavoritesPage.routeName,\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": 13118
},
{
"endIndex": 13197,
"paragraph": {
"elements": [
{
"endIndex": 13197,
"startIndex": 13159,
"textRun": {
"content": " builder: (context, state) {\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": 13159
},
{
"endIndex": 13239,
"paragraph": {
"elements": [
{
"endIndex": 13239,
"startIndex": 13197,
"textRun": {
"content": " return const FavoritesPage();\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": 13197
},
{
"endIndex": 13252,
"paragraph": {
"elements": [
{
"endIndex": 13252,
"startIndex": 13239,
"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": 13239
},
{
"endIndex": 13263,
"paragraph": {
"elements": [
{
"endIndex": 13263,
"startIndex": 13252,
"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": 13252
},
{
"endIndex": 13272,
"paragraph": {
"elements": [
{
"endIndex": 13272,
"startIndex": 13263,
"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": 13263
},
{
"endIndex": 13279,
"paragraph": {
"elements": [
{
"endIndex": 13279,
"startIndex": 13272,
"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": 13272
},
{
"endIndex": 13284,
"paragraph": {
"elements": [
{
"endIndex": 13284,
"startIndex": 13279,
"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": 13279
},
{
"endIndex": 13287,
"paragraph": {
"elements": [
{
"endIndex": 13287,
"startIndex": 13284,
"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": 13284
},
{
"endIndex": 13288,
"paragraph": {
"elements": [
{
"endIndex": 13288,
"startIndex": 13287,
"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": 13287
},
{
"endIndex": 13331,
"paragraph": {
"elements": [
{
"endIndex": 13331,
"startIndex": 13288,
"textRun": {
"content": "class TestingApp extends StatelessWidget {\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": 13288
},
{
"endIndex": 13364,
"paragraph": {
"elements": [
{
"endIndex": 13364,
"startIndex": 13331,
"textRun": {
"content": " const TestingApp({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": 13331
},
{
"endIndex": 13365,
"paragraph": {
"elements": [
{
"endIndex": 13365,
"startIndex": 13364,
"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": 13364
},
{
"endIndex": 13377,
"paragraph": {
"elements": [
{
"endIndex": 13377,
"startIndex": 13365,
"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": 13365
},
{
"endIndex": 13416,
"paragraph": {
"elements": [
{
"endIndex": 13416,
"startIndex": 13377,
"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": 13377
},
{
"endIndex": 13462,
"paragraph": {
"elements": [
{
"endIndex": 13462,
"startIndex": 13416,
"textRun": {
"content": " return ChangeNotifierProvider<Favorites>(\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": 13416
},
{
"endIndex": 13502,
"paragraph": {
"elements": [
{
"endIndex": 13502,
"startIndex": 13462,
"textRun": {
"content": " create: (context) => Favorites(),\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": 13462
},
{
"endIndex": 13535,
"paragraph": {
"elements": [
{
"endIndex": 13535,
"startIndex": 13502,
"textRun": {
"content": " child: MaterialApp.router(\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": 13502
},
{
"endIndex": 13568,
"paragraph": {
"elements": [
{
"endIndex": 13568,
"startIndex": 13535,
"textRun": {
"content": " title: 'Testing Sample',\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": 13535
},
{
"endIndex": 13594,
"paragraph": {
"elements": [
{
"endIndex": 13594,
"startIndex": 13568,
"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": 13568
},
{
"endIndex": 13632,
"paragraph": {
"elements": [
{
"endIndex": 13632,
"startIndex": 13594,
"textRun": {
"content": " primarySwatch: Colors.blue,\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": 13594
},
{
"endIndex": 13662,
"paragraph": {
"elements": [
{
"endIndex": 13662,
"startIndex": 13632,
"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": 13632
},
{
"endIndex": 13673,
"paragraph": {
"elements": [
{
"endIndex": 13673,
"startIndex": 13662,
"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": 13662
},
{
"endIndex": 13704,
"paragraph": {
"elements": [
{
"endIndex": 13704,
"startIndex": 13673,
"textRun": {
"content": " routerConfig: _router,\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": 13673
},
{
"endIndex": 13713,
"paragraph": {
"elements": [
{
"endIndex": 13713,
"startIndex": 13704,
"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": 13704
},
{
"endIndex": 13720,
"paragraph": {
"elements": [
{
"endIndex": 13720,
"startIndex": 13713,
"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": 13713
},
{
"endIndex": 13724,
"paragraph": {
"elements": [
{
"endIndex": 13724,
"startIndex": 13720,
"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": 13720
},
{
"endIndex": 13726,
"paragraph": {
"elements": [
{
"endIndex": 13725,
"startIndex": 13724,
"textRun": {
"content": "}",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 13726,
"startIndex": 13725,
"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": 13724
}
],
"endIndex": 13726,
"startIndex": 12660,
"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": 13728,
"paragraph": {
"elements": [
{
"endIndex": 13728,
"startIndex": 13727,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 13727
},
{
"endIndex": 13767,
"paragraph": {
"elements": [
{
"endIndex": 13766,
"startIndex": 13728,
"textRun": {
"content": "The app is now complete, but untested.",
"textStyle": {}
}
},
{
"endIndex": 13767,
"startIndex": 13766,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 13728
},
{
"endIndex": 13768,
"paragraph": {
"elements": [
{
"endIndex": 13768,
"startIndex": 13767,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 13767
},
{
"endIndex": 13828,
"paragraph": {
"elements": [
{
"endIndex": 13769,
"inlineObjectElement": {
"inlineObjectId": "kix.rs7d47iay6n6",
"textStyle": {}
},
"startIndex": 13768
},
{
"endIndex": 13828,
"startIndex": 13769,
"textRun": {
"content": "Run the app. It should look like the following screenshot:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 13768
},
{
"endIndex": 13829,
"paragraph": {
"elements": [
{
"endIndex": 13829,
"startIndex": 13828,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 13828
},
{
"endIndex": 13831,
"paragraph": {
"elements": [
{
"endIndex": 13830,
"inlineObjectElement": {
"inlineObjectId": "kix.bq782xjqvdjv",
"textStyle": {}
},
"startIndex": 13829
},
{
"endIndex": 13831,
"startIndex": 13830,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 13829
},
{
"endIndex": 13832,
"paragraph": {
"elements": [
{
"endIndex": 13832,
"startIndex": 13831,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 13831
},
{
"endIndex": 14056,
"paragraph": {
"elements": [
{
"endIndex": 13884,
"startIndex": 13832,
"textRun": {
"content": "The app shows a list of items. Tap the heart-shaped ",
"textStyle": {}
}
},
{
"endIndex": 13888,
"startIndex": 13884,
"textRun": {
"content": "icon",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13945,
"startIndex": 13888,
"textRun": {
"content": " on any row to fill in the heart and add the item to the ",
"textStyle": {}
}
},
{
"endIndex": 13959,
"startIndex": 13945,
"textRun": {
"content": "favorites list",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13965,
"startIndex": 13959,
"textRun": {
"content": ". The ",
"textStyle": {}
}
},
{
"endIndex": 13974,
"startIndex": 13965,
"textRun": {
"content": "Favorites",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13981,
"startIndex": 13974,
"textRun": {
"content": " button",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 13989,
"startIndex": 13981,
"textRun": {
"content": " on the ",
"textStyle": {}
}
},
{
"endIndex": 13995,
"startIndex": 13989,
"textRun": {
"content": "AppBar",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 14040,
"startIndex": 13995,
"textRun": {
"content": " takes you to a second screen containing the ",
"textStyle": {}
}
},
{
"endIndex": 14056,
"startIndex": 14040,
"textRun": {
"content": "favorites list.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 13832
},
{
"endIndex": 14057,
"paragraph": {
"elements": [
{
"endIndex": 14057,
"startIndex": 14056,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 14056
},
{
"endIndex": 14139,
"paragraph": {
"elements": [
{
"endIndex": 14139,
"startIndex": 14057,
"textRun": {
"content": "The app is now ready for testing. You’ll start testing the app in the next step.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 14057
},
{
"endIndex": 14165,
"paragraph": {
"elements": [
{
"endIndex": 14165,
"startIndex": 14139,
"textRun": {
"content": "Unit testing the provider\n",
"textStyle": {
"fontSize": {
"magnitude": 18.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.o7wkpp16ivz9",
"namedStyleType": "HEADING_1",
"pageBreakBefore": false
}
},
"startIndex": 14139
},
{
"endIndex": 14180,
"paragraph": {
"elements": [
{
"endIndex": 14179,
"startIndex": 14165,
"textRun": {
"content": "Duration: 5:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 14180,
"startIndex": 14179,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 14165
},
{
"endIndex": 14181,
"paragraph": {
"elements": [
{
"endIndex": 14181,
"startIndex": 14180,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 14180
},
{
"endIndex": 14390,
"paragraph": {
"elements": [
{
"endIndex": 14214,
"startIndex": 14181,
"textRun": {
"content": "You’ll start by unit testing the ",
"textStyle": {}
}
},
{
"endIndex": 14223,
"startIndex": 14214,
"textRun": {
"content": "favorites",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 14231,
"startIndex": 14223,
"textRun": {
"content": " model. ",
"textStyle": {}
}
},
{
"endIndex": 14232,
"startIndex": 14231,
"textRun": {
"content": "W",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
}
}
},
{
"endIndex": 14251,
"startIndex": 14232,
"textRun": {
"content": "hat is a unit test?",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
}
}
},
{
"endIndex": 14252,
"startIndex": 14251,
"textRun": {
"content": " ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2627451,
"green": 0.2509804,
"red": 0.23529412
}
}
}
}
}
},
{
"endIndex": 14295,
"startIndex": 14252,
"textRun": {
"content": "A unit test verifies that every individual ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
}
}
},
{
"endIndex": 14299,
"startIndex": 14295,
"textRun": {
"content": "unit",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"italic": true
}
}
},
{
"endIndex": 14390,
"startIndex": 14299,
"textRun": {
"content": " of software, be it a function, object or a widget, performs its intended task correctly.\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 14181
},
{
"endIndex": 14391,
"paragraph": {
"elements": [
{
"endIndex": 14391,
"startIndex": 14390,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 14390
},
{
"endIndex": 14492,
"paragraph": {
"elements": [
{
"endIndex": 14476,
"startIndex": 14391,
"textRun": {
"content": "All the test files in a Flutter app, except for integration tests, are placed in the ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
}
}
},
{
"endIndex": 14480,
"startIndex": 14476,
"textRun": {
"content": "test",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 14491,
"startIndex": 14480,
"textRun": {
"content": " directory.",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
}
}
},
{
"endIndex": 14492,
"startIndex": 14491,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 14391
},
{
"endIndex": 14493,
"paragraph": {
"elements": [
{
"endIndex": 14493,
"startIndex": 14492,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 14492
},
{
"endIndex": 14693,
"startIndex": 14493,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 14692,
"startIndex": 14494,
"tableCells": [
{
"content": [
{
"endIndex": 14692,
"paragraph": {
"elements": [
{
"endIndex": 14502,
"startIndex": 14496,
"textRun": {
"content": "Note: ",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 14529,
"startIndex": 14502,
"textRun": {
"content": "These instructions use the ",
"textStyle": {}
}
},
{
"endIndex": 14541,
"startIndex": 14529,
"textRun": {
"content": "command line",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 14692,
"startIndex": 14541,
"textRun": {
"content": " to run the tests. However, you can also use the options provided by VS Code and Android Studio for running unit and widget tests on your application.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 14496
}
],
"endIndex": 14692,
"startIndex": 14495,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"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": 14694,
"paragraph": {
"elements": [
{
"endIndex": 14694,
"startIndex": 14693,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 14693
},
{
"endIndex": 14723,
"paragraph": {
"elements": [
{
"endIndex": 14700,
"startIndex": 14694,
"textRun": {
"content": "Remove",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
}
}
}
},
{
"endIndex": 14701,
"startIndex": 14700,
"textRun": {
"content": " ",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
}
}
}
},
{
"endIndex": 14723,
"startIndex": 14701,
"textRun": {
"content": "test/widget_test.dart\n",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.ozej4uql1crf",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 14694
},
{
"endIndex": 14724,
"paragraph": {
"elements": [
{
"endIndex": 14724,
"startIndex": 14723,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 14723
},
{
"endIndex": 14823,
"paragraph": {
"elements": [
{
"endIndex": 14725,
"inlineObjectElement": {
"inlineObjectId": "kix.msx029net7f",
"textStyle": {}
},
"startIndex": 14724
},
{
"endIndex": 14752,
"startIndex": 14725,
"textRun": {
"content": "Before you begin testing, d",
"textStyle": {}
}
},
{
"endIndex": 14762,
"startIndex": 14752,
"textRun": {
"content": "elete the ",
"textStyle": {}
}
},
{
"endIndex": 14778,
"startIndex": 14762,
"textRun": {
"content": "widget_test.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 14822,
"startIndex": 14778,
"textRun": {
"content": " file. You’ll be adding your own test files.",
"textStyle": {}
}
},
{
"endIndex": 14823,
"startIndex": 14822,
"textRun": {
"content": "\n",
"textStyle": {
"bold": false,
"fontSize": {
"magnitude": 16.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 14724
},
{
"endIndex": 14846,
"paragraph": {
"elements": [
{
"endIndex": 14846,
"startIndex": 14823,
"textRun": {
"content": "Create a new test file\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.ju260rdqj548",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 14823
},
{
"endIndex": 15148,
"paragraph": {
"elements": [
{
"endIndex": 14869,
"startIndex": 14846,
"textRun": {
"content": "First, you’ll test the ",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 14874,
"startIndex": 14869,
"textRun": {
"content": "add()",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 14889,
"startIndex": 14874,
"textRun": {
"content": " method in the ",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 14898,
"startIndex": 14889,
"textRun": {
"content": "Favorites",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 15040,
"startIndex": 14898,
"textRun": {
"content": " model to verify that a new item gets added to the list, and that the list reflects the change. By convention, the directory structure in the ",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 15044,
"startIndex": 15040,
"textRun": {
"content": "test",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 15074,
"startIndex": 15044,
"textRun": {
"content": " directory mimics that in the ",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 15077,
"startIndex": 15074,
"textRun": {
"content": "lib",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 15131,
"startIndex": 15077,
"textRun": {
"content": " directory and the Dart files have the same name with ",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 15137,
"startIndex": 15131,
"textRun": {
"content": "_test ",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 15146,
"startIndex": 15137,
"textRun": {
"content": " appended",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 15147,
"startIndex": 15146,
"textRun": {
"content": ".",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 15148,
"startIndex": 15147,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 11.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 11.0,
"unit": "PT"
}
}
},
"startIndex": 14846
},
{
"endIndex": 15283,
"paragraph": {
"elements": [
{
"endIndex": 15149,
"inlineObjectElement": {
"inlineObjectId": "kix.d4vz5dd90gaz",
"textStyle": {}
},
"startIndex": 15148
},
{
"endIndex": 15158,
"startIndex": 15149,
"textRun": {
"content": "Create a ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 15164,
"startIndex": 15158,
"textRun": {
"content": "models",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 15182,
"startIndex": 15164,
"textRun": {
"content": " directory in the ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 15186,
"startIndex": 15182,
"textRun": {
"content": "test",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 15230,
"startIndex": 15186,
"textRun": {
"content": " directory. In this new directory, create a ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 15249,
"startIndex": 15230,
"textRun": {
"content": "favorites_test.dart",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 15282,
"startIndex": 15249,
"textRun": {
"content": " file with the following content:",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 15283,
"startIndex": 15282,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 15148
},
{
"endIndex": 15284,
"paragraph": {
"elements": [
{
"endIndex": 15284,
"startIndex": 15283,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 15283
},
{
"endIndex": 15316,
"paragraph": {
"elements": [
{
"endIndex": 15315,
"startIndex": 15284,
"textRun": {
"content": "test/models/favorites_test.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/testing_codelab/step_05/test/models/favorites_test.dart"
},
"underline": true
}
}
},
{
"endIndex": 15316,
"startIndex": 15315,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.1wzi16ibjujt",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 15284
},
{
"endIndex": 15661,
"startIndex": 15316,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 15660,
"startIndex": 15317,
"tableCells": [
{
"content": [
{
"endIndex": 15352,
"paragraph": {
"elements": [
{
"endIndex": 15352,
"startIndex": 15319,
"textRun": {
"content": "import 'package:test/test.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": 15319
},
{
"endIndex": 15404,
"paragraph": {
"elements": [
{
"endIndex": 15404,
"startIndex": 15352,
"textRun": {
"content": "import 'package:testing_app/models/favorites.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": 15352
},
{
"endIndex": 15405,
"paragraph": {
"elements": [
{
"endIndex": 15405,
"startIndex": 15404,
"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": 15404
},
{
"endIndex": 15419,
"paragraph": {
"elements": [
{
"endIndex": 15419,
"startIndex": 15405,
"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": 15405
},
{
"endIndex": 15456,
"paragraph": {
"elements": [
{
"endIndex": 15456,
"startIndex": 15419,
"textRun": {
"content": " group('Testing App Provider', () {\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": 15419
},
{
"endIndex": 15489,
"paragraph": {
"elements": [
{
"endIndex": 15489,
"startIndex": 15456,
"textRun": {
"content": " var favorites = Favorites();\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": 15456
},
{
"endIndex": 15490,
"paragraph": {
"elements": [
{
"endIndex": 15490,
"startIndex": 15489,
"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": 15489
},
{
"endIndex": 15534,
"paragraph": {
"elements": [
{
"endIndex": 15534,
"startIndex": 15490,
"textRun": {
"content": " test('A new item should be added', () {\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": 15490
},
{
"endIndex": 15557,
"paragraph": {
"elements": [
{
"endIndex": 15557,
"startIndex": 15534,
"textRun": {
"content": " var number = 35;\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": 15534
},
{
"endIndex": 15586,
"paragraph": {
"elements": [
{
"endIndex": 15586,
"startIndex": 15557,
"textRun": {
"content": " favorites.add(number);\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": 15557
},
{
"endIndex": 15640,
"paragraph": {
"elements": [
{
"endIndex": 15640,
"startIndex": 15586,
"textRun": {
"content": " expect(favorites.items.contains(number), 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": 15586
},
{
"endIndex": 15652,
"paragraph": {
"elements": [
{
"endIndex": 15652,
"startIndex": 15640,
"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": 15640
},
{
"endIndex": 15658,
"paragraph": {
"elements": [
{
"endIndex": 15658,
"startIndex": 15652,
"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": 15652
},
{
"endIndex": 15660,
"paragraph": {
"elements": [
{
"endIndex": 15660,
"startIndex": 15658,
"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": 15658
}
],
"endIndex": 15660,
"startIndex": 15318,
"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": 15662,
"paragraph": {
"elements": [
{
"endIndex": 15662,
"startIndex": 15661,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 15661
},
{
"endIndex": 15891,
"paragraph": {
"elements": [
{
"endIndex": 15665,
"startIndex": 15662,
"textRun": {
"content": "The",
"textStyle": {}
}
},
{
"endIndex": 15691,
"startIndex": 15665,
"textRun": {
"content": " Flutter testing framework",
"textStyle": {}
}
},
{
"endIndex": 15876,
"startIndex": 15691,
"textRun": {
"content": " allows you to bind similar tests related to each other in a group. There can be multiple groups in a single test file intended to test different parts of the corresponding file in the ",
"textStyle": {}
}
},
{
"endIndex": 15879,
"startIndex": 15876,
"textRun": {
"content": "lib",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 15891,
"startIndex": 15879,
"textRun": {
"content": " directory.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 15662
},
{
"endIndex": 15892,
"paragraph": {
"elements": [
{
"endIndex": 15892,
"startIndex": 15891,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 15891
},
{
"endIndex": 16023,
"paragraph": {
"elements": [
{
"endIndex": 15896,
"startIndex": 15892,
"textRun": {
"content": "The ",
"textStyle": {}
}
},
{
"endIndex": 15902,
"startIndex": 15896,
"textRun": {
"content": "test()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 15947,
"startIndex": 15902,
"textRun": {
"content": " method takes two positional parameters: the ",
"textStyle": {}
}
},
{
"endIndex": 15958,
"startIndex": 15947,
"textRun": {
"content": "description",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 15979,
"startIndex": 15958,
"textRun": {
"content": " of the test and the ",
"textStyle": {}
}
},
{
"endIndex": 15987,
"startIndex": 15979,
"textRun": {
"content": "callback",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 16023,
"startIndex": 15987,
"textRun": {
"content": " where you actually write the test.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 15892
},
{
"endIndex": 16024,
"paragraph": {
"elements": [
{
"endIndex": 16024,
"startIndex": 16023,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16023
},
{
"endIndex": 16130,
"paragraph": {
"elements": [
{
"endIndex": 16025,
"inlineObjectElement": {
"inlineObjectId": "kix.evfxwl6jtu5p",
"textStyle": {}
},
"startIndex": 16024
},
{
"endIndex": 16101,
"startIndex": 16025,
"textRun": {
"content": "Test removing an item from the list. Insert the following test in the same ",
"textStyle": {}
}
},
{
"endIndex": 16121,
"startIndex": 16101,
"textRun": {
"content": "Testing App Provider",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 16130,
"startIndex": 16121,
"textRun": {
"content": " group:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16024
},
{
"endIndex": 16131,
"paragraph": {
"elements": [
{
"endIndex": 16131,
"startIndex": 16130,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16130
},
{
"endIndex": 16163,
"paragraph": {
"elements": [
{
"endIndex": 16162,
"startIndex": 16131,
"textRun": {
"content": "test/models/favorites_test.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/testing_codelab/step_05/test/models/favorites_test.dart"
},
"underline": true
}
}
},
{
"endIndex": 16163,
"startIndex": 16162,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.84z4hkcjsaif",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 16131
},
{
"endIndex": 16383,
"startIndex": 16163,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 16382,
"startIndex": 16164,
"tableCells": [
{
"content": [
{
"endIndex": 16205,
"paragraph": {
"elements": [
{
"endIndex": 16205,
"startIndex": 16166,
"textRun": {
"content": "test('An item should be removed', () {\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": 16166
},
{
"endIndex": 16224,
"paragraph": {
"elements": [
{
"endIndex": 16224,
"startIndex": 16205,
"textRun": {
"content": " var number = 45;\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": 16205
},
{
"endIndex": 16249,
"paragraph": {
"elements": [
{
"endIndex": 16249,
"startIndex": 16224,
"textRun": {
"content": " favorites.add(number);\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": 16224
},
{
"endIndex": 16299,
"paragraph": {
"elements": [
{
"endIndex": 16299,
"startIndex": 16249,
"textRun": {
"content": " expect(favorites.items.contains(number), 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": 16249
},
{
"endIndex": 16327,
"paragraph": {
"elements": [
{
"endIndex": 16327,
"startIndex": 16299,
"textRun": {
"content": " favorites.remove(number);\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": 16299
},
{
"endIndex": 16378,
"paragraph": {
"elements": [
{
"endIndex": 16378,
"startIndex": 16327,
"textRun": {
"content": " expect(favorites.items.contains(number), false);\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": 16327
},
{
"endIndex": 16382,
"paragraph": {
"elements": [
{
"endIndex": 16382,
"startIndex": 16378,
"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": 16378
}
],
"endIndex": 16382,
"startIndex": 16165,
"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": 16384,
"paragraph": {
"elements": [
{
"endIndex": 16384,
"startIndex": 16383,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16383
},
{
"endIndex": 16397,
"paragraph": {
"elements": [
{
"endIndex": 16396,
"startIndex": 16384,
"textRun": {
"content": "Run the test",
"textStyle": {}
}
},
{
"endIndex": 16397,
"startIndex": 16396,
"textRun": {
"content": "\n",
"textStyle": {
"bold": false,
"fontSize": {
"magnitude": 16.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.6yxrv73h3a0x",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 16384
},
{
"endIndex": 16493,
"paragraph": {
"elements": [
{
"endIndex": 16398,
"inlineObjectElement": {
"inlineObjectId": "kix.b9xif596w41m",
"textStyle": {}
},
"startIndex": 16397
},
{
"endIndex": 16419,
"startIndex": 16398,
"textRun": {
"content": "At the command line, ",
"textStyle": {}
}
},
{
"endIndex": 16492,
"startIndex": 16419,
"textRun": {
"content": "navigate to the project’s root directory and enter the following command:",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 16493,
"startIndex": 16492,
"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,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 16397
},
{
"endIndex": 16545,
"startIndex": 16493,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 16544,
"startIndex": 16494,
"tableCells": [
{
"content": [
{
"endIndex": 16544,
"paragraph": {
"elements": [
{
"endIndex": 16543,
"startIndex": 16496,
"textRun": {
"content": "$ flutter test test/models/favorites_test.dart ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 16544,
"startIndex": 16543,
"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": 16496
}
],
"endIndex": 16544,
"startIndex": 16495,
"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": 16546,
"paragraph": {
"elements": [
{
"endIndex": 16546,
"startIndex": 16545,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16545
},
{
"endIndex": 16618,
"paragraph": {
"elements": [
{
"endIndex": 16618,
"startIndex": 16546,
"textRun": {
"content": "If everything works, you should see a message similar to the following:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16546
},
{
"endIndex": 16619,
"paragraph": {
"elements": [
{
"endIndex": 16619,
"startIndex": 16618,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16618
},
{
"endIndex": 16703,
"startIndex": 16619,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 16702,
"startIndex": 16620,
"tableCells": [
{
"content": [
{
"endIndex": 16702,
"paragraph": {
"elements": [
{
"endIndex": 16702,
"startIndex": 16622,
"textRun": {
"content": "00:06 +2: All tests passed! \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": 16622
}
],
"endIndex": 16702,
"startIndex": 16621,
"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": 16704,
"paragraph": {
"elements": [
{
"endIndex": 16704,
"startIndex": 16703,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16703
},
{
"endIndex": 16761,
"paragraph": {
"elements": [
{
"endIndex": 16728,
"startIndex": 16704,
"textRun": {
"content": "The complete test file: ",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
}
}
}
},
{
"endIndex": 16759,
"startIndex": 16728,
"textRun": {
"content": "test/models/favorites_test.dart",
"textStyle": {
"bold": true,
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/testing_codelab/step_05/test/models/favorites_test.dart"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 16760,
"startIndex": 16759,
"textRun": {
"content": ".",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 16761,
"startIndex": 16760,
"textRun": {
"content": "\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16704
},
{
"endIndex": 16762,
"paragraph": {
"elements": [
{
"endIndex": 16762,
"startIndex": 16761,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16761
},
{
"endIndex": 16855,
"startIndex": 16762,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 16854,
"startIndex": 16763,
"tableCells": [
{
"content": [
{
"endIndex": 16838,
"paragraph": {
"elements": [
{
"endIndex": 16768,
"startIndex": 16765,
"textRun": {
"content": "Tip",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 16803,
"startIndex": 16768,
"textRun": {
"content": ": You can run all the tests in the ",
"textStyle": {}
}
},
{
"endIndex": 16807,
"startIndex": 16803,
"textRun": {
"content": "test",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 16838,
"startIndex": 16807,
"textRun": {
"content": " directory at once by running:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16765
},
{
"endIndex": 16839,
"paragraph": {
"elements": [
{
"endIndex": 16839,
"startIndex": 16838,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16838
},
{
"endIndex": 16854,
"paragraph": {
"elements": [
{
"endIndex": 16853,
"startIndex": 16839,
"textRun": {
"content": "$ flutter test",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 16854,
"startIndex": 16853,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 16839
}
],
"endIndex": 16854,
"startIndex": 16764,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"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": 16856,
"paragraph": {
"elements": [
{
"endIndex": 16856,
"startIndex": 16855,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 18.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16855
},
{
"endIndex": 16933,
"paragraph": {
"elements": [
{
"endIndex": 16900,
"startIndex": 16856,
"textRun": {
"content": "For more information on unit testing, visit ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 16931,
"startIndex": 16900,
"textRun": {
"content": "An introduction to unit testing",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://flutter.dev/docs/cookbook/testing/unit/introduction"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 16933,
"startIndex": 16931,
"textRun": {
"content": ".\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16856
},
{
"endIndex": 16948,
"paragraph": {
"elements": [
{
"endIndex": 16947,
"startIndex": 16933,
"textRun": {
"content": "Widget testing",
"textStyle": {
"fontSize": {
"magnitude": 18.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 16948,
"startIndex": 16947,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 18.0,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.7a0ktremdsrl",
"namedStyleType": "HEADING_1",
"pageBreakBefore": false
}
},
"startIndex": 16933
},
{
"endIndex": 16964,
"paragraph": {
"elements": [
{
"endIndex": 16963,
"startIndex": 16948,
"textRun": {
"content": "Duration: 15:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 16964,
"startIndex": 16963,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16948
},
{
"endIndex": 16965,
"paragraph": {
"elements": [
{
"endIndex": 16965,
"startIndex": 16964,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16964
},
{
"endIndex": 17172,
"paragraph": {
"elements": [
{
"endIndex": 17123,
"startIndex": 16965,
"textRun": {
"content": "In this step you’ll add code to test widgets. Widget testing is unique to Flutter, where you can test each widget in an isolated fashion. This step tests the ",
"textStyle": {}
}
},
{
"endIndex": 17131,
"startIndex": 17123,
"textRun": {
"content": "HomePage",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17136,
"startIndex": 17131,
"textRun": {
"content": " and ",
"textStyle": {}
}
},
{
"endIndex": 17149,
"startIndex": 17136,
"textRun": {
"content": "FavoritesPage",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17172,
"startIndex": 17149,
"textRun": {
"content": " screens individually.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 16965
},
{
"endIndex": 17173,
"paragraph": {
"elements": [
{
"endIndex": 17173,
"startIndex": 17172,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 17172
},
{
"endIndex": 17411,
"paragraph": {
"elements": [
{
"endIndex": 17174,
"startIndex": 17173,
"textRun": {
"content": "W",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 17197,
"startIndex": 17174,
"textRun": {
"content": "idget testing uses the ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 17209,
"startIndex": 17197,
"textRun": {
"content": "testWidget()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17233,
"startIndex": 17209,
"textRun": {
"content": " function instead of the",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 17240,
"startIndex": 17233,
"textRun": {
"content": " test()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17259,
"startIndex": 17240,
"textRun": {
"content": " function. Like the",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 17266,
"startIndex": 17259,
"textRun": {
"content": " test()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17281,
"startIndex": 17266,
"textRun": {
"content": " function, the ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 17293,
"startIndex": 17281,
"textRun": {
"content": "testWidget()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17325,
"startIndex": 17293,
"textRun": {
"content": " function takes two parameters: ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 17337,
"startIndex": 17325,
"textRun": {
"content": "description,",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17342,
"startIndex": 17337,
"textRun": {
"content": " and ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 17350,
"startIndex": 17342,
"textRun": {
"content": "callback",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17381,
"startIndex": 17350,
"textRun": {
"content": ", however the callback takes a ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 17393,
"startIndex": 17381,
"textRun": {
"content": "WidgetTester",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17411,
"startIndex": 17393,
"textRun": {
"content": " as its argument.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 17173
},
{
"endIndex": 17412,
"paragraph": {
"elements": [
{
"endIndex": 17412,
"startIndex": 17411,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 17411
},
{
"endIndex": 17898,
"paragraph": {
"elements": [
{
"endIndex": 17429,
"startIndex": 17412,
"textRun": {
"content": "Widget tests use ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2627451,
"green": 0.2509804,
"red": 0.23529412
}
}
}
}
}
},
{
"endIndex": 17454,
"startIndex": 17429,
"textRun": {
"content": "TestFlutterWidgetsBinding",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2627451,
"green": 0.2509804,
"red": 0.23529412
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17763,
"startIndex": 17454,
"textRun": {
"content": ", a class that provides the same resources to your widgets that they would have in a running app, e.g. information about screen size, the ability to schedule animations, but without running inside an app. Instead, a virtual environment is used to instantiate the widget, and then run tests the results. Here, ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2627451,
"green": 0.2509804,
"red": 0.23529412
}
}
}
}
}
},
{
"endIndex": 17773,
"startIndex": 17763,
"textRun": {
"content": "pumpWidget",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2627451,
"green": 0.2509804,
"red": 0.23529412
}
}
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17897,
"startIndex": 17773,
"textRun": {
"content": " kicks off the process by telling the framework to mount and measure a particular widget just as it would in an application.",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2627451,
"green": 0.2509804,
"red": 0.23529412
}
}
}
}
}
},
{
"endIndex": 17898,
"startIndex": 17897,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 17412
},
{
"endIndex": 17899,
"paragraph": {
"elements": [
{
"endIndex": 17899,
"startIndex": 17898,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 17898
},
{
"endIndex": 18066,
"paragraph": {
"elements": [
{
"endIndex": 17974,
"startIndex": 17899,
"textRun": {
"content": "The widget testing framework provides finders to find widgets, for example ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 17980,
"startIndex": 17974,
"textRun": {
"content": "text()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17982,
"startIndex": 17980,
"textRun": {
"content": ", ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 17990,
"startIndex": 17982,
"textRun": {
"content": "byType()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 17996,
"startIndex": 17990,
"textRun": {
"content": ", and ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 18005,
"startIndex": 17996,
"textRun": {
"content": "byIcon().",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18066,
"startIndex": 18005,
"textRun": {
"content": " The framework also provides matchers to verify the results.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 17899
},
{
"endIndex": 18067,
"paragraph": {
"elements": [
{
"endIndex": 18067,
"startIndex": 18066,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 18066
},
{
"endIndex": 18105,
"paragraph": {
"elements": [
{
"endIndex": 18088,
"startIndex": 18067,
"textRun": {
"content": "Start by testing the ",
"textStyle": {}
}
},
{
"endIndex": 18096,
"startIndex": 18088,
"textRun": {
"content": "HomePage",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18104,
"startIndex": 18096,
"textRun": {
"content": " widget.",
"textStyle": {}
}
},
{
"endIndex": 18105,
"startIndex": 18104,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 18067
},
{
"endIndex": 18128,
"paragraph": {
"elements": [
{
"endIndex": 18128,
"startIndex": 18105,
"textRun": {
"content": "Create a new test file\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.yy7mc2b5no56",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 18105
},
{
"endIndex": 18129,
"paragraph": {
"elements": [
{
"endIndex": 18129,
"startIndex": 18128,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 18128
},
{
"endIndex": 18200,
"paragraph": {
"elements": [
{
"endIndex": 18175,
"startIndex": 18129,
"textRun": {
"content": "The first test verifies whether scrolling the ",
"textStyle": {}
}
},
{
"endIndex": 18183,
"startIndex": 18175,
"textRun": {
"content": "HomePage",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18200,
"startIndex": 18183,
"textRun": {
"content": " works properly.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 18129
},
{
"endIndex": 18201,
"paragraph": {
"elements": [
{
"endIndex": 18201,
"startIndex": 18200,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 18200
},
{
"endIndex": 18321,
"paragraph": {
"elements": [
{
"endIndex": 18202,
"inlineObjectElement": {
"inlineObjectId": "kix.4bjxnpvmqdqw",
"textStyle": {}
},
"startIndex": 18201
},
{
"endIndex": 18227,
"startIndex": 18202,
"textRun": {
"content": "Create a new file in the ",
"textStyle": {}
}
},
{
"endIndex": 18231,
"startIndex": 18227,
"textRun": {
"content": "test",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18254,
"startIndex": 18231,
"textRun": {
"content": " directory and name it ",
"textStyle": {}
}
},
{
"endIndex": 18268,
"startIndex": 18254,
"textRun": {
"content": "home_test.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 18321,
"startIndex": 18268,
"textRun": {
"content": ". In the newly created file, add the following code:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 18201
},
{
"endIndex": 18322,
"paragraph": {
"elements": [
{
"endIndex": 18322,
"startIndex": 18321,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 18321
},
{
"endIndex": 18342,
"paragraph": {
"elements": [
{
"endIndex": 18341,
"startIndex": 18322,
"textRun": {
"content": "test/home_test.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/testing_codelab/step_06/test/home_test.dart"
},
"underline": true
}
}
},
{
"endIndex": 18342,
"startIndex": 18341,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.fuoyhtqb1e7n",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 18322
},
{
"endIndex": 19177,
"startIndex": 18342,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 19176,
"startIndex": 18343,
"tableCells": [
{
"content": [
{
"endIndex": 18385,
"paragraph": {
"elements": [
{
"endIndex": 18385,
"startIndex": 18345,
"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": 18345
},
{
"endIndex": 18434,
"paragraph": {
"elements": [
{
"endIndex": 18434,
"startIndex": 18385,
"textRun": {
"content": "import 'package:flutter_test/flutter_test.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": 18385
},
{
"endIndex": 18475,
"paragraph": {
"elements": [
{
"endIndex": 18475,
"startIndex": 18434,
"textRun": {
"content": "import 'package:provider/provider.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": 18434
},
{
"endIndex": 18527,
"paragraph": {
"elements": [
{
"endIndex": 18527,
"startIndex": 18475,
"textRun": {
"content": "import 'package:testing_app/models/favorites.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": 18475
},
{
"endIndex": 18575,
"paragraph": {
"elements": [
{
"endIndex": 18575,
"startIndex": 18527,
"textRun": {
"content": "import 'package:testing_app/screens/home.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": 18527
},
{
"endIndex": 18576,
"paragraph": {
"elements": [
{
"endIndex": 18576,
"startIndex": 18575,
"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": 18575
},
{
"endIndex": 18640,
"paragraph": {
"elements": [
{
"endIndex": 18640,
"startIndex": 18576,
"textRun": {
"content": "Widget createHomeScreen() => ChangeNotifierProvider<Favorites>(\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": 18576
},
{
"endIndex": 18680,
"paragraph": {
"elements": [
{
"endIndex": 18680,
"startIndex": 18640,
"textRun": {
"content": " create: (context) => Favorites(),\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": 18640
},
{
"endIndex": 18712,
"paragraph": {
"elements": [
{
"endIndex": 18712,
"startIndex": 18680,
"textRun": {
"content": " child: const 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": 18680
},
{
"endIndex": 18738,
"paragraph": {
"elements": [
{
"endIndex": 18738,
"startIndex": 18712,
"textRun": {
"content": " home: HomePage(),\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": 18712
},
{
"endIndex": 18747,
"paragraph": {
"elements": [
{
"endIndex": 18747,
"startIndex": 18738,
"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": 18738
},
{
"endIndex": 18754,
"paragraph": {
"elements": [
{
"endIndex": 18754,
"startIndex": 18747,
"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": 18747
},
{
"endIndex": 18755,
"paragraph": {
"elements": [
{
"endIndex": 18755,
"startIndex": 18754,
"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": 18754
},
{
"endIndex": 18769,
"paragraph": {
"elements": [
{
"endIndex": 18769,
"startIndex": 18755,
"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": 18755
},
{
"endIndex": 18808,
"paragraph": {
"elements": [
{
"endIndex": 18808,
"startIndex": 18769,
"textRun": {
"content": " group('Home Page Widget Tests', () {\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": 18769
},
{
"endIndex": 18862,
"paragraph": {
"elements": [
{
"endIndex": 18862,
"startIndex": 18808,
"textRun": {
"content": " testWidgets('Testing Scrolling', (tester) 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": 18808
},
{
"endIndex": 18913,
"paragraph": {
"elements": [
{
"endIndex": 18913,
"startIndex": 18862,
"textRun": {
"content": " await tester.pumpWidget(createHomeScreen());\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": 18862
},
{
"endIndex": 18964,
"paragraph": {
"elements": [
{
"endIndex": 18964,
"startIndex": 18913,
"textRun": {
"content": " expect(find.text('Item 0'), findsOneWidget);\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": 18913
},
{
"endIndex": 18990,
"paragraph": {
"elements": [
{
"endIndex": 18990,
"startIndex": 18964,
"textRun": {
"content": " await tester.fling(\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": 18964
},
{
"endIndex": 19021,
"paragraph": {
"elements": [
{
"endIndex": 19021,
"startIndex": 18990,
"textRun": {
"content": " find.byType(ListView),\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": 18990
},
{
"endIndex": 19052,
"paragraph": {
"elements": [
{
"endIndex": 19052,
"startIndex": 19021,
"textRun": {
"content": " const Offset(0, -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": 19021
},
{
"endIndex": 19066,
"paragraph": {
"elements": [
{
"endIndex": 19066,
"startIndex": 19052,
"textRun": {
"content": " 3000,\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": 19052
},
{
"endIndex": 19075,
"paragraph": {
"elements": [
{
"endIndex": 19075,
"startIndex": 19066,
"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": 19066
},
{
"endIndex": 19111,
"paragraph": {
"elements": [
{
"endIndex": 19111,
"startIndex": 19075,
"textRun": {
"content": " await tester.pumpAndSettle();\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": 19075
},
{
"endIndex": 19160,
"paragraph": {
"elements": [
{
"endIndex": 19160,
"startIndex": 19111,
"textRun": {
"content": " expect(find.text('Item 0'), findsNothing);\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": 19111
},
{
"endIndex": 19168,
"paragraph": {
"elements": [
{
"endIndex": 19168,
"startIndex": 19160,
"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": 19160
},
{
"endIndex": 19174,
"paragraph": {
"elements": [
{
"endIndex": 19174,
"startIndex": 19168,
"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": 19168
},
{
"endIndex": 19176,
"paragraph": {
"elements": [
{
"endIndex": 19176,
"startIndex": 19174,
"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": 19174
}
],
"endIndex": 19176,
"startIndex": 18344,
"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": 19178,
"paragraph": {
"elements": [
{
"endIndex": 19178,
"startIndex": 19177,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 19177
},
{
"endIndex": 19553,
"paragraph": {
"elements": [
{
"endIndex": 19182,
"startIndex": 19178,
"textRun": {
"content": "The ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 19200,
"startIndex": 19182,
"textRun": {
"content": "createHomeScreen()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 19530,
"startIndex": 19200,
"textRun": {
"content": " function is used to create an app that loads the widget to be tested in a MaterialApp, wrapped into a ChangeNotifierProvider. The HomePage widget needs both of these widgets to be present above it in the widget tree so it can inherit from them and get access to the data they offer. This function is passed as a parameter to the ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 19542,
"startIndex": 19530,
"textRun": {
"content": "pumpWidget()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 19553,
"startIndex": 19542,
"textRun": {
"content": " function.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 19178
},
{
"endIndex": 19554,
"paragraph": {
"elements": [
{
"endIndex": 19554,
"startIndex": 19553,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 19553
},
{
"endIndex": 19633,
"paragraph": {
"elements": [
{
"endIndex": 19598,
"startIndex": 19554,
"textRun": {
"content": "Next, test whether the framework can find a ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 19606,
"startIndex": 19598,
"textRun": {
"content": "ListView",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 19633,
"startIndex": 19606,
"textRun": {
"content": " rendered onto the screen.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 19554
},
{
"endIndex": 19634,
"paragraph": {
"elements": [
{
"endIndex": 19634,
"startIndex": 19633,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 19633
},
{
"endIndex": 19860,
"startIndex": 19634,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 19859,
"startIndex": 19635,
"tableCells": [
{
"content": [
{
"endIndex": 19859,
"paragraph": {
"elements": [
{
"endIndex": 19641,
"startIndex": 19637,
"textRun": {
"content": "Note",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 19738,
"startIndex": 19641,
"textRun": {
"content": ": This test is supposed to be run before the scrolling test as you are performing actions on the ",
"textStyle": {}
}
},
{
"endIndex": 19746,
"startIndex": 19738,
"textRun": {
"content": "ListView",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 19747,
"startIndex": 19746,
"textRun": {
"content": " ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 19859,
"startIndex": 19747,
"textRun": {
"content": "in it. However, to give you a general idea of how widgets tests are written we wrote the scrolling test first. \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19637
}
],
"endIndex": 19859,
"startIndex": 19636,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"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": 19861,
"paragraph": {
"elements": [
{
"endIndex": 19861,
"startIndex": 19860,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19860
},
{
"endIndex": 19912,
"paragraph": {
"elements": [
{
"endIndex": 19862,
"inlineObjectElement": {
"inlineObjectId": "kix.v89a14d9pxx",
"textStyle": {}
},
"startIndex": 19861
},
{
"endIndex": 19865,
"startIndex": 19862,
"textRun": {
"content": "Add",
"textStyle": {}
}
},
{
"endIndex": 19896,
"startIndex": 19865,
"textRun": {
"content": " the following code snippet to ",
"textStyle": {}
}
},
{
"endIndex": 19910,
"startIndex": 19896,
"textRun": {
"content": "home_test.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 19912,
"startIndex": 19910,
"textRun": {
"content": ":\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19861
},
{
"endIndex": 19913,
"paragraph": {
"elements": [
{
"endIndex": 19913,
"startIndex": 19912,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 19912
},
{
"endIndex": 19933,
"paragraph": {
"elements": [
{
"endIndex": 19932,
"startIndex": 19913,
"textRun": {
"content": "test/home_test.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/testing_codelab/step_06/test/home_test.dart"
},
"underline": true
}
}
},
{
"endIndex": 19933,
"startIndex": 19932,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.rfgwtui5w6q9",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 19913
},
{
"endIndex": 20571,
"startIndex": 19933,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 20570,
"startIndex": 19934,
"tableCells": [
{
"content": [
{
"endIndex": 19973,
"paragraph": {
"elements": [
{
"endIndex": 19973,
"startIndex": 19936,
"textRun": {
"content": "group('Home Page Widget Tests', () {\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": 19936
},
{
"endIndex": 19974,
"paragraph": {
"elements": [
{
"endIndex": 19974,
"startIndex": 19973,
"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": 19973
},
{
"endIndex": 20004,
"paragraph": {
"elements": [
{
"endIndex": 20004,
"startIndex": 19974,
"textRun": {
"content": " // BEGINNING OF NEW 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": 19974
},
{
"endIndex": 20069,
"paragraph": {
"elements": [
{
"endIndex": 20069,
"startIndex": 20004,
"textRun": {
"content": " testWidgets('Testing if ListView shows up', (tester) 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": 20004
},
{
"endIndex": 20118,
"paragraph": {
"elements": [
{
"endIndex": 20118,
"startIndex": 20069,
"textRun": {
"content": " await tester.pumpWidget(createHomeScreen());\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": 20069
},
{
"endIndex": 20169,
"paragraph": {
"elements": [
{
"endIndex": 20169,
"startIndex": 20118,
"textRun": {
"content": " expect(find.byType(ListView), findsOneWidget);\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": 20118
},
{
"endIndex": 20181,
"paragraph": {
"elements": [
{
"endIndex": 20181,
"startIndex": 20169,
"textRun": {
"content": " });\t\t\t\t\t\t\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": 20169
},
{
"endIndex": 20205,
"paragraph": {
"elements": [
{
"endIndex": 20205,
"startIndex": 20181,
"textRun": {
"content": " // END OF NEW 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": 20181
},
{
"endIndex": 20206,
"paragraph": {
"elements": [
{
"endIndex": 20206,
"startIndex": 20205,
"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": 20205
},
{
"endIndex": 20260,
"paragraph": {
"elements": [
{
"endIndex": 20260,
"startIndex": 20206,
"textRun": {
"content": " testWidgets('Testing Scrolling', (tester) 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": 20206
},
{
"endIndex": 20311,
"paragraph": {
"elements": [
{
"endIndex": 20311,
"startIndex": 20260,
"textRun": {
"content": " await tester.pumpWidget(createHomeScreen());\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": 20260
},
{
"endIndex": 20362,
"paragraph": {
"elements": [
{
"endIndex": 20362,
"startIndex": 20311,
"textRun": {
"content": " expect(find.text('Item 0'), findsOneWidget);\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": 20311
},
{
"endIndex": 20388,
"paragraph": {
"elements": [
{
"endIndex": 20388,
"startIndex": 20362,
"textRun": {
"content": " await tester.fling(\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": 20362
},
{
"endIndex": 20419,
"paragraph": {
"elements": [
{
"endIndex": 20419,
"startIndex": 20388,
"textRun": {
"content": " find.byType(ListView),\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": 20388
},
{
"endIndex": 20450,
"paragraph": {
"elements": [
{
"endIndex": 20450,
"startIndex": 20419,
"textRun": {
"content": " const Offset(0, -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": 20419
},
{
"endIndex": 20464,
"paragraph": {
"elements": [
{
"endIndex": 20464,
"startIndex": 20450,
"textRun": {
"content": " 3000,\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": 20450
},
{
"endIndex": 20473,
"paragraph": {
"elements": [
{
"endIndex": 20473,
"startIndex": 20464,
"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": 20464
},
{
"endIndex": 20509,
"paragraph": {
"elements": [
{
"endIndex": 20509,
"startIndex": 20473,
"textRun": {
"content": " await tester.pumpAndSettle();\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": 20473
},
{
"endIndex": 20558,
"paragraph": {
"elements": [
{
"endIndex": 20558,
"startIndex": 20509,
"textRun": {
"content": " expect(find.text('Item 0'), findsNothing);\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": 20509
},
{
"endIndex": 20566,
"paragraph": {
"elements": [
{
"endIndex": 20566,
"startIndex": 20558,
"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": 20558
},
{
"endIndex": 20570,
"paragraph": {
"elements": [
{
"endIndex": 20570,
"startIndex": 20566,
"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": 20566
}
],
"endIndex": 20570,
"startIndex": 19935,
"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": 20572,
"paragraph": {
"elements": [
{
"endIndex": 20572,
"startIndex": 20571,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 20571
},
{
"endIndex": 20585,
"paragraph": {
"elements": [
{
"endIndex": 20585,
"startIndex": 20572,
"textRun": {
"content": "Run the test\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.911yu4qzr38v",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 20572
},
{
"endIndex": 20666,
"paragraph": {
"elements": [
{
"endIndex": 20665,
"startIndex": 20585,
"textRun": {
"content": "First, run the test in the same way you would run a unit test, with the command:",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 20666,
"startIndex": 20665,
"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,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 20585
},
{
"endIndex": 20706,
"startIndex": 20666,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 20705,
"startIndex": 20667,
"tableCells": [
{
"content": [
{
"endIndex": 20705,
"paragraph": {
"elements": [
{
"endIndex": 20705,
"startIndex": 20669,
"textRun": {
"content": "$ flutter test test/home_test.dart \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": 20669
}
],
"endIndex": 20705,
"startIndex": 20668,
"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": 20707,
"paragraph": {
"elements": [
{
"endIndex": 20707,
"startIndex": 20706,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20706
},
{
"endIndex": 20780,
"paragraph": {
"elements": [
{
"endIndex": 20780,
"startIndex": 20707,
"textRun": {
"content": "The test should run quickly, and you should see a message like this one:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20707
},
{
"endIndex": 20781,
"paragraph": {
"elements": [
{
"endIndex": 20781,
"startIndex": 20780,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 20780
},
{
"endIndex": 20865,
"startIndex": 20781,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 20864,
"startIndex": 20782,
"tableCells": [
{
"content": [
{
"endIndex": 20864,
"paragraph": {
"elements": [
{
"endIndex": 20864,
"startIndex": 20784,
"textRun": {
"content": "00:02 +2: All tests passed! \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": 20784
}
],
"endIndex": 20864,
"startIndex": 20783,
"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": 20866,
"paragraph": {
"elements": [
{
"endIndex": 20866,
"startIndex": 20865,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 20865
},
{
"endIndex": 21021,
"paragraph": {
"elements": [
{
"endIndex": 20883,
"startIndex": 20866,
"textRun": {
"content": "You can also run ",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 20895,
"startIndex": 20883,
"textRun": {
"content": "widget tests",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 21008,
"startIndex": 20895,
"textRun": {
"content": " using a device or an emulator, which allows you to watch the test running. It also gives you the ability to use ",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 21019,
"startIndex": 21008,
"textRun": {
"content": "hot restart",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 21021,
"startIndex": 21019,
"textRun": {
"content": ".\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 20866
},
{
"endIndex": 21118,
"paragraph": {
"elements": [
{
"endIndex": 21022,
"inlineObjectElement": {
"inlineObjectId": "kix.lwerlpw3ks35",
"textStyle": {}
},
"startIndex": 21021
},
{
"endIndex": 21118,
"startIndex": 21022,
"textRun": {
"content": "Plug-in your device or start your emulator. You can also run the test as a desktop application.\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 21021
},
{
"endIndex": 21216,
"paragraph": {
"elements": [
{
"endIndex": 21119,
"inlineObjectElement": {
"inlineObjectId": "kix.8fiu045gopb0",
"textStyle": {}
},
"startIndex": 21118
},
{
"endIndex": 21215,
"startIndex": 21119,
"textRun": {
"content": "From the command line, navigate to the project’s root directory and enter the following command:",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 21216,
"startIndex": 21215,
"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,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 21118
},
{
"endIndex": 21255,
"startIndex": 21216,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 21254,
"startIndex": 21217,
"tableCells": [
{
"content": [
{
"endIndex": 21254,
"paragraph": {
"elements": [
{
"endIndex": 21254,
"startIndex": 21219,
"textRun": {
"content": "$ flutter run test/home_test.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": 21219
}
],
"endIndex": 21254,
"startIndex": 21218,
"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": 21256,
"paragraph": {
"elements": [
{
"endIndex": 21256,
"startIndex": 21255,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 21255
},
{
"endIndex": 21369,
"paragraph": {
"elements": [
{
"endIndex": 21369,
"startIndex": 21256,
"textRun": {
"content": "You may need to select the device to run the test on. In that case, follow the instructions and select a device:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 21256
},
{
"endIndex": 21370,
"paragraph": {
"elements": [
{
"endIndex": 21370,
"startIndex": 21369,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 21369
},
{
"endIndex": 21635,
"startIndex": 21370,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 21634,
"startIndex": 21371,
"tableCells": [
{
"content": [
{
"endIndex": 21397,
"paragraph": {
"elements": [
{
"endIndex": 21397,
"startIndex": 21373,
"textRun": {
"content": "Multiple devices found:\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": 21373
},
{
"endIndex": 21478,
"paragraph": {
"elements": [
{
"endIndex": 21478,
"startIndex": 21397,
"textRun": {
"content": "Linux (desktop) • linux • linux-x64 • Ubuntu 22.04.1 LTS 5.15.0-58-generic\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": 21397
},
{
"endIndex": 21551,
"paragraph": {
"elements": [
{
"endIndex": 21551,
"startIndex": 21478,
"textRun": {
"content": "Chrome (web) • chrome • web-javascript • Google Chrome 109.0.5414.119\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": 21478
},
{
"endIndex": 21570,
"paragraph": {
"elements": [
{
"endIndex": 21570,
"startIndex": 21551,
"textRun": {
"content": "[1]: Linux (linux)\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": 21551
},
{
"endIndex": 21591,
"paragraph": {
"elements": [
{
"endIndex": 21591,
"startIndex": 21570,
"textRun": {
"content": "[2]: Chrome (chrome)\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": 21570
},
{
"endIndex": 21634,
"paragraph": {
"elements": [
{
"endIndex": 21634,
"startIndex": 21591,
"textRun": {
"content": "Please choose one (To quit, press \"q/Q\"): \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": 21591
}
],
"endIndex": 21634,
"startIndex": 21372,
"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": 21636,
"paragraph": {
"elements": [
{
"endIndex": 21636,
"startIndex": 21635,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 21635
},
{
"endIndex": 21637,
"paragraph": {
"elements": [
{
"endIndex": 21637,
"startIndex": 21636,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 21636
},
{
"endIndex": 21708,
"paragraph": {
"elements": [
{
"endIndex": 21708,
"startIndex": 21637,
"textRun": {
"content": "If everything works you should see an output similar to the following:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 21637
},
{
"endIndex": 21709,
"paragraph": {
"elements": [
{
"endIndex": 21709,
"startIndex": 21708,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 21708
},
{
"endIndex": 22595,
"startIndex": 21709,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 22594,
"startIndex": 21710,
"tableCells": [
{
"content": [
{
"endIndex": 21768,
"paragraph": {
"elements": [
{
"endIndex": 21768,
"startIndex": 21712,
"textRun": {
"content": "Launching test/home_test.dart on Linux in debug mode...\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": 21712
},
{
"endIndex": 21841,
"paragraph": {
"elements": [
{
"endIndex": 21841,
"startIndex": 21768,
"textRun": {
"content": "Building Linux 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": 21768
},
{
"endIndex": 21912,
"paragraph": {
"elements": [
{
"endIndex": 21912,
"startIndex": 21841,
"textRun": {
"content": "flutter: 00:00 +0: Home Page Widget Tests Testing if ListView shows up\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": 21841
},
{
"endIndex": 21985,
"paragraph": {
"elements": [
{
"endIndex": 21985,
"startIndex": 21912,
"textRun": {
"content": "Syncing files to device Linux... 62ms\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": 21912
},
{
"endIndex": 21986,
"paragraph": {
"elements": [
{
"endIndex": 21986,
"startIndex": 21985,
"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": 21985
},
{
"endIndex": 22012,
"paragraph": {
"elements": [
{
"endIndex": 22012,
"startIndex": 21986,
"textRun": {
"content": "Flutter run key commands.\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": 21986
},
{
"endIndex": 22033,
"paragraph": {
"elements": [
{
"endIndex": 22033,
"startIndex": 22012,
"textRun": {
"content": "r Hot reload. 🔥🔥🔥\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": 22012
},
{
"endIndex": 22048,
"paragraph": {
"elements": [
{
"endIndex": 22048,
"startIndex": 22033,
"textRun": {
"content": "R Hot restart.\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": 22033
},
{
"endIndex": 22091,
"paragraph": {
"elements": [
{
"endIndex": 22091,
"startIndex": 22048,
"textRun": {
"content": "h List all available interactive commands.\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": 22048
},
{
"endIndex": 22157,
"paragraph": {
"elements": [
{
"endIndex": 22157,
"startIndex": 22091,
"textRun": {
"content": "d Detach (terminate \"flutter run\" but leave application running).\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": 22091
},
{
"endIndex": 22176,
"paragraph": {
"elements": [
{
"endIndex": 22176,
"startIndex": 22157,
"textRun": {
"content": "c Clear the screen\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": 22157
},
{
"endIndex": 22226,
"paragraph": {
"elements": [
{
"endIndex": 22226,
"startIndex": 22176,
"textRun": {
"content": "q Quit (terminate the application on the device).\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": 22176
},
{
"endIndex": 22227,
"paragraph": {
"elements": [
{
"endIndex": 22227,
"startIndex": 22226,
"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": 22226
},
{
"endIndex": 22264,
"paragraph": {
"elements": [
{
"endIndex": 22264,
"startIndex": 22227,
"textRun": {
"content": "💪 Running with sound null safety 💪\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": 22227
},
{
"endIndex": 22265,
"paragraph": {
"elements": [
{
"endIndex": 22265,
"startIndex": 22264,
"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": 22264
},
{
"endIndex": 22365,
"paragraph": {
"elements": [
{
"endIndex": 22365,
"startIndex": 22265,
"textRun": {
"content": "An Observatory debugger and profiler on Linux is available at: http://127.0.0.1:35583/GCpdLBqf2UI=/\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": 22265
},
{
"endIndex": 22425,
"paragraph": {
"elements": [
{
"endIndex": 22425,
"startIndex": 22365,
"textRun": {
"content": "flutter: 00:00 +1: Home Page Widget Tests Testing Scrolling\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": 22365
},
{
"endIndex": 22494,
"paragraph": {
"elements": [
{
"endIndex": 22494,
"startIndex": 22425,
"textRun": {
"content": "The Flutter DevTools debugger and profiler on Linux is available at:\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": 22425
},
{
"endIndex": 22557,
"paragraph": {
"elements": [
{
"endIndex": 22557,
"startIndex": 22494,
"textRun": {
"content": "http://127.0.0.1:9100?uri=http://127.0.0.1:35583/GCpdLBqf2UI=/\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": 22494
},
{
"endIndex": 22594,
"paragraph": {
"elements": [
{
"endIndex": 22594,
"startIndex": 22557,
"textRun": {
"content": "flutter: 00:02 +2: All tests passed!\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": 22557
}
],
"endIndex": 22594,
"startIndex": 21711,
"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": 22596,
"paragraph": {
"elements": [
{
"endIndex": 22596,
"startIndex": 22595,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 22595
},
{
"endIndex": 22737,
"paragraph": {
"elements": [
{
"endIndex": 22649,
"startIndex": 22596,
"textRun": {
"content": "Next, you’ll make changes to the test file and press ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 22658,
"startIndex": 22649,
"textRun": {
"content": "Shift + R",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 22737,
"startIndex": 22658,
"textRun": {
"content": " to hot restart the app and re-run all the tests. Do not stop the application.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 22596
},
{
"endIndex": 22738,
"paragraph": {
"elements": [
{
"endIndex": 22738,
"startIndex": 22737,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 22737
},
{
"endIndex": 22838,
"paragraph": {
"elements": [
{
"endIndex": 22739,
"inlineObjectElement": {
"inlineObjectId": "kix.gqfd0f5er86o",
"textStyle": {}
},
"startIndex": 22738
},
{
"endIndex": 22772,
"startIndex": 22739,
"textRun": {
"content": "Add more tests to the group that ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 22799,
"startIndex": 22772,
"textRun": {
"content": "tests the HomePage widgets.",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 22838,
"startIndex": 22799,
"textRun": {
"content": " Copy the following test to your file:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 22738
},
{
"endIndex": 22839,
"paragraph": {
"elements": [
{
"endIndex": 22839,
"startIndex": 22838,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 22838
},
{
"endIndex": 22859,
"paragraph": {
"elements": [
{
"endIndex": 22858,
"startIndex": 22839,
"textRun": {
"content": "test/home_test.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/testing_codelab/step_06/test/home_test.dart"
},
"underline": true
}
}
},
{
"endIndex": 22859,
"startIndex": 22858,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.hitrp1fahwcs",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 22839
},
{
"endIndex": 23482,
"startIndex": 22859,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 23481,
"startIndex": 22860,
"tableCells": [
{
"content": [
{
"endIndex": 22914,
"paragraph": {
"elements": [
{
"endIndex": 22914,
"startIndex": 22862,
"textRun": {
"content": "testWidgets('Testing IconButtons', (tester) 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": 22862
},
{
"endIndex": 22961,
"paragraph": {
"elements": [
{
"endIndex": 22961,
"startIndex": 22914,
"textRun": {
"content": " await tester.pumpWidget(createHomeScreen());\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": 22914
},
{
"endIndex": 23014,
"paragraph": {
"elements": [
{
"endIndex": 23014,
"startIndex": 22961,
"textRun": {
"content": " expect(find.byIcon(Icons.favorite), findsNothing);\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": 22961
},
{
"endIndex": 23076,
"paragraph": {
"elements": [
{
"endIndex": 23076,
"startIndex": 23014,
"textRun": {
"content": " await tester.tap(find.byIcon(Icons.favorite_border).first);\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": 23014
},
{
"endIndex": 23134,
"paragraph": {
"elements": [
{
"endIndex": 23134,
"startIndex": 23076,
"textRun": {
"content": " await tester.pumpAndSettle(const Duration(seconds: 1));\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": 23076
},
{
"endIndex": 23194,
"paragraph": {
"elements": [
{
"endIndex": 23194,
"startIndex": 23134,
"textRun": {
"content": " expect(find.text('Added to favorites.'), findsOneWidget);\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": 23134
},
{
"endIndex": 23247,
"paragraph": {
"elements": [
{
"endIndex": 23247,
"startIndex": 23194,
"textRun": {
"content": " expect(find.byIcon(Icons.favorite), findsWidgets);\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": 23194
},
{
"endIndex": 23302,
"paragraph": {
"elements": [
{
"endIndex": 23302,
"startIndex": 23247,
"textRun": {
"content": " await tester.tap(find.byIcon(Icons.favorite).first);\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": 23247
},
{
"endIndex": 23360,
"paragraph": {
"elements": [
{
"endIndex": 23360,
"startIndex": 23302,
"textRun": {
"content": " await tester.pumpAndSettle(const Duration(seconds: 1));\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": 23302
},
{
"endIndex": 23424,
"paragraph": {
"elements": [
{
"endIndex": 23424,
"startIndex": 23360,
"textRun": {
"content": " expect(find.text('Removed from favorites.'), findsOneWidget);\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": 23360
},
{
"endIndex": 23477,
"paragraph": {
"elements": [
{
"endIndex": 23477,
"startIndex": 23424,
"textRun": {
"content": " expect(find.byIcon(Icons.favorite), findsNothing);\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": 23424
},
{
"endIndex": 23481,
"paragraph": {
"elements": [
{
"endIndex": 23481,
"startIndex": 23477,
"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": 23477
}
],
"endIndex": 23481,
"startIndex": 22861,
"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": 23483,
"paragraph": {
"elements": [
{
"endIndex": 23483,
"startIndex": 23482,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23482
},
{
"endIndex": 23678,
"paragraph": {
"elements": [
{
"endIndex": 23520,
"startIndex": 23483,
"textRun": {
"content": "This test verifies that tapping the ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23530,
"startIndex": 23520,
"textRun": {
"content": "IconButton",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23544,
"startIndex": 23530,
"textRun": {
"content": " changes from ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23565,
"startIndex": 23544,
"textRun": {
"content": "Icons.favorite_border",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23585,
"startIndex": 23565,
"textRun": {
"content": " (an open heart) to ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23599,
"startIndex": 23585,
"textRun": {
"content": "Icons.favorite",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23637,
"startIndex": 23599,
"textRun": {
"content": " (a filled-in heart) and then back to ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23658,
"startIndex": 23637,
"textRun": {
"content": "Icons.favorite_border",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23678,
"startIndex": 23658,
"textRun": {
"content": " when tapped again.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23483
},
{
"endIndex": 23679,
"paragraph": {
"elements": [
{
"endIndex": 23679,
"startIndex": 23678,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23678
},
{
"endIndex": 23750,
"paragraph": {
"elements": [
{
"endIndex": 23680,
"inlineObjectElement": {
"inlineObjectId": "kix.eq1djvxuil7r",
"textStyle": {}
},
"startIndex": 23679
},
{
"endIndex": 23686,
"startIndex": 23680,
"textRun": {
"content": "Enter ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23695,
"startIndex": 23686,
"textRun": {
"content": "Shift + R",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23750,
"startIndex": 23695,
"textRun": {
"content": ". This hot restarts the app and re-runs all the tests.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23679
},
{
"endIndex": 23751,
"paragraph": {
"elements": [
{
"endIndex": 23751,
"startIndex": 23750,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23750
},
{
"endIndex": 23796,
"paragraph": {
"elements": [
{
"endIndex": 23775,
"startIndex": 23751,
"textRun": {
"content": "The complete test file: ",
"textStyle": {
"bold": false,
"foregroundColor": {
"color": {
"rgbColor": {}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23794,
"startIndex": 23775,
"textRun": {
"content": "test/home_test.dart",
"textStyle": {
"bold": true,
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/testing_codelab/step_06/test/home_test.dart"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23795,
"startIndex": 23794,
"textRun": {
"content": ".",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23796,
"startIndex": 23795,
"textRun": {
"content": "\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23751
},
{
"endIndex": 23797,
"paragraph": {
"elements": [
{
"endIndex": 23797,
"startIndex": 23796,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23796
},
{
"endIndex": 23904,
"paragraph": {
"elements": [
{
"endIndex": 23798,
"inlineObjectElement": {
"inlineObjectId": "kix.x2m11py6vbqc",
"textStyle": {}
},
"startIndex": 23797
},
{
"endIndex": 23831,
"startIndex": 23798,
"textRun": {
"content": "Use the same process to test the ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 23844,
"startIndex": 23831,
"textRun": {
"content": "FavoritesPage",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 23904,
"startIndex": 23844,
"textRun": {
"content": " with the following code. Follow the same steps and run it.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23797
},
{
"endIndex": 23905,
"paragraph": {
"elements": [
{
"endIndex": 23905,
"startIndex": 23904,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 23904
},
{
"endIndex": 23930,
"paragraph": {
"elements": [
{
"endIndex": 23929,
"startIndex": 23905,
"textRun": {
"content": "test/favorites_test.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/testing_codelab/step_06/test/favorites_test.dart"
},
"underline": true
}
}
},
{
"endIndex": 23930,
"startIndex": 23929,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.4bn147hqux75",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 23905
},
{
"endIndex": 25348,
"startIndex": 23930,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 25347,
"startIndex": 23931,
"tableCells": [
{
"content": [
{
"endIndex": 23973,
"paragraph": {
"elements": [
{
"endIndex": 23973,
"startIndex": 23933,
"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": 23933
},
{
"endIndex": 24022,
"paragraph": {
"elements": [
{
"endIndex": 24022,
"startIndex": 23973,
"textRun": {
"content": "import 'package:flutter_test/flutter_test.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": 23973
},
{
"endIndex": 24063,
"paragraph": {
"elements": [
{
"endIndex": 24063,
"startIndex": 24022,
"textRun": {
"content": "import 'package:provider/provider.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": 24022
},
{
"endIndex": 24115,
"paragraph": {
"elements": [
{
"endIndex": 24115,
"startIndex": 24063,
"textRun": {
"content": "import 'package:testing_app/models/favorites.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": 24063
},
{
"endIndex": 24168,
"paragraph": {
"elements": [
{
"endIndex": 24168,
"startIndex": 24115,
"textRun": {
"content": "import 'package:testing_app/screens/favorites.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": 24115
},
{
"endIndex": 24169,
"paragraph": {
"elements": [
{
"endIndex": 24169,
"startIndex": 24168,
"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": 24168
},
{
"endIndex": 24199,
"paragraph": {
"elements": [
{
"endIndex": 24199,
"startIndex": 24169,
"textRun": {
"content": "late Favorites favoritesList;\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": 24169
},
{
"endIndex": 24200,
"paragraph": {
"elements": [
{
"endIndex": 24200,
"startIndex": 24199,
"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": 24199
},
{
"endIndex": 24269,
"paragraph": {
"elements": [
{
"endIndex": 24269,
"startIndex": 24200,
"textRun": {
"content": "Widget createFavoritesScreen() => ChangeNotifierProvider<Favorites>(\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": 24200
},
{
"endIndex": 24295,
"paragraph": {
"elements": [
{
"endIndex": 24295,
"startIndex": 24269,
"textRun": {
"content": " create: (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": 24269
},
{
"endIndex": 24332,
"paragraph": {
"elements": [
{
"endIndex": 24332,
"startIndex": 24295,
"textRun": {
"content": " favoritesList = Favorites();\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": 24295
},
{
"endIndex": 24362,
"paragraph": {
"elements": [
{
"endIndex": 24362,
"startIndex": 24332,
"textRun": {
"content": " return favoritesList;\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": 24332
},
{
"endIndex": 24371,
"paragraph": {
"elements": [
{
"endIndex": 24371,
"startIndex": 24362,
"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": 24362
},
{
"endIndex": 24403,
"paragraph": {
"elements": [
{
"endIndex": 24403,
"startIndex": 24371,
"textRun": {
"content": " child: const 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": 24371
},
{
"endIndex": 24434,
"paragraph": {
"elements": [
{
"endIndex": 24434,
"startIndex": 24403,
"textRun": {
"content": " home: FavoritesPage(),\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": 24403
},
{
"endIndex": 24443,
"paragraph": {
"elements": [
{
"endIndex": 24443,
"startIndex": 24434,
"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": 24434
},
{
"endIndex": 24450,
"paragraph": {
"elements": [
{
"endIndex": 24450,
"startIndex": 24443,
"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": 24443
},
{
"endIndex": 24451,
"paragraph": {
"elements": [
{
"endIndex": 24451,
"startIndex": 24450,
"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": 24450
},
{
"endIndex": 24469,
"paragraph": {
"elements": [
{
"endIndex": 24469,
"startIndex": 24451,
"textRun": {
"content": "void addItems() {\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": 24451
},
{
"endIndex": 24505,
"paragraph": {
"elements": [
{
"endIndex": 24505,
"startIndex": 24469,
"textRun": {
"content": " for (var i = 0; i < 10; i += 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": 24469
},
{
"endIndex": 24531,
"paragraph": {
"elements": [
{
"endIndex": 24531,
"startIndex": 24505,
"textRun": {
"content": " favoritesList.add(i);\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": 24505
},
{
"endIndex": 24535,
"paragraph": {
"elements": [
{
"endIndex": 24535,
"startIndex": 24531,
"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": 24531
},
{
"endIndex": 24537,
"paragraph": {
"elements": [
{
"endIndex": 24537,
"startIndex": 24535,
"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": 24535
},
{
"endIndex": 24538,
"paragraph": {
"elements": [
{
"endIndex": 24538,
"startIndex": 24537,
"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": 24537
},
{
"endIndex": 24552,
"paragraph": {
"elements": [
{
"endIndex": 24552,
"startIndex": 24538,
"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": 24538
},
{
"endIndex": 24596,
"paragraph": {
"elements": [
{
"endIndex": 24596,
"startIndex": 24552,
"textRun": {
"content": " group('Favorites Page Widget Tests', () {\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": 24552
},
{
"endIndex": 24658,
"paragraph": {
"elements": [
{
"endIndex": 24658,
"startIndex": 24596,
"textRun": {
"content": " testWidgets('Test if ListView shows up', (tester) 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": 24596
},
{
"endIndex": 24714,
"paragraph": {
"elements": [
{
"endIndex": 24714,
"startIndex": 24658,
"textRun": {
"content": " await tester.pumpWidget(createFavoritesScreen());\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": 24658
},
{
"endIndex": 24732,
"paragraph": {
"elements": [
{
"endIndex": 24732,
"startIndex": 24714,
"textRun": {
"content": " addItems();\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": 24714
},
{
"endIndex": 24768,
"paragraph": {
"elements": [
{
"endIndex": 24768,
"startIndex": 24732,
"textRun": {
"content": " await tester.pumpAndSettle();\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": 24732
},
{
"endIndex": 24821,
"paragraph": {
"elements": [
{
"endIndex": 24821,
"startIndex": 24768,
"textRun": {
"content": " expect(find.byType(ListView), findsOneWidget);\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": 24768
},
{
"endIndex": 24829,
"paragraph": {
"elements": [
{
"endIndex": 24829,
"startIndex": 24821,
"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": 24821
},
{
"endIndex": 24830,
"paragraph": {
"elements": [
{
"endIndex": 24830,
"startIndex": 24829,
"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": 24829
},
{
"endIndex": 24888,
"paragraph": {
"elements": [
{
"endIndex": 24888,
"startIndex": 24830,
"textRun": {
"content": " testWidgets('Testing Remove Button', (tester) 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": 24830
},
{
"endIndex": 24944,
"paragraph": {
"elements": [
{
"endIndex": 24944,
"startIndex": 24888,
"textRun": {
"content": " await tester.pumpWidget(createFavoritesScreen());\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": 24888
},
{
"endIndex": 24962,
"paragraph": {
"elements": [
{
"endIndex": 24962,
"startIndex": 24944,
"textRun": {
"content": " addItems();\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": 24944
},
{
"endIndex": 24998,
"paragraph": {
"elements": [
{
"endIndex": 24998,
"startIndex": 24962,
"textRun": {
"content": " await tester.pumpAndSettle();\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": 24962
},
{
"endIndex": 25073,
"paragraph": {
"elements": [
{
"endIndex": 25073,
"startIndex": 24998,
"textRun": {
"content": " var totalItems = tester.widgetList(find.byIcon(Icons.close)).length;\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": 24998
},
{
"endIndex": 25129,
"paragraph": {
"elements": [
{
"endIndex": 25129,
"startIndex": 25073,
"textRun": {
"content": " await tester.tap(find.byIcon(Icons.close).first);\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": 25073
},
{
"endIndex": 25165,
"paragraph": {
"elements": [
{
"endIndex": 25165,
"startIndex": 25129,
"textRun": {
"content": " await tester.pumpAndSettle();\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": 25129
},
{
"endIndex": 25230,
"paragraph": {
"elements": [
{
"endIndex": 25230,
"startIndex": 25165,
"textRun": {
"content": " expect(tester.widgetList(find.byIcon(Icons.close)).length,\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": 25165
},
{
"endIndex": 25263,
"paragraph": {
"elements": [
{
"endIndex": 25263,
"startIndex": 25230,
"textRun": {
"content": " lessThan(totalItems));\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": 25230
},
{
"endIndex": 25331,
"paragraph": {
"elements": [
{
"endIndex": 25331,
"startIndex": 25263,
"textRun": {
"content": " expect(find.text('Removed from favorites.'), findsOneWidget);\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": 25263
},
{
"endIndex": 25339,
"paragraph": {
"elements": [
{
"endIndex": 25339,
"startIndex": 25331,
"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": 25331
},
{
"endIndex": 25345,
"paragraph": {
"elements": [
{
"endIndex": 25345,
"startIndex": 25339,
"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": 25339
},
{
"endIndex": 25347,
"paragraph": {
"elements": [
{
"endIndex": 25347,
"startIndex": 25345,
"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": 25345
}
],
"endIndex": 25347,
"startIndex": 23932,
"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": 25349,
"paragraph": {
"elements": [
{
"endIndex": 25349,
"startIndex": 25348,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 25348
},
{
"endIndex": 25438,
"paragraph": {
"elements": [
{
"endIndex": 25438,
"startIndex": 25349,
"textRun": {
"content": "This test verifies whether an item disappears when the close (remove) button is pressed.\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 25349
},
{
"endIndex": 25439,
"paragraph": {
"elements": [
{
"endIndex": 25439,
"startIndex": 25438,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 25438
},
{
"endIndex": 25486,
"paragraph": {
"elements": [
{
"endIndex": 25486,
"startIndex": 25439,
"textRun": {
"content": "For more information on widget testing, visit:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 25439
},
{
"endIndex": 25487,
"paragraph": {
"elements": [
{
"endIndex": 25487,
"startIndex": 25486,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 25486
},
{
"endIndex": 25521,
"paragraph": {
"bullet": {
"listId": "kix.vnpt9crrt431",
"textStyle": {}
},
"elements": [
{
"endIndex": 25520,
"startIndex": 25487,
"textRun": {
"content": "An introduction to widget testing",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://flutter.dev/docs/cookbook/testing/widget/introduction"
},
"underline": true
}
}
},
{
"endIndex": 25521,
"startIndex": 25520,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"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": 25487
},
{
"endIndex": 25534,
"paragraph": {
"bullet": {
"listId": "kix.vnpt9crrt431",
"textStyle": {}
},
"elements": [
{
"endIndex": 25533,
"startIndex": 25521,
"textRun": {
"content": "Find widgets",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://flutter.dev/docs/cookbook/testing/widget/finders"
},
"underline": true
}
}
},
{
"endIndex": 25534,
"startIndex": 25533,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"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": 25521
},
{
"endIndex": 25560,
"paragraph": {
"bullet": {
"listId": "kix.vnpt9crrt431",
"textStyle": {}
},
"elements": [
{
"endIndex": 25559,
"startIndex": 25534,
"textRun": {
"content": "Tap, drag, and enter text",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://flutter.dev/docs/cookbook/testing/widget/tap-drag"
},
"underline": true
}
}
},
{
"endIndex": 25560,
"startIndex": 25559,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"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": 25534
},
{
"endIndex": 25585,
"paragraph": {
"bullet": {
"listId": "kix.vnpt9crrt431",
"textStyle": {}
},
"elements": [
{
"endIndex": 25564,
"startIndex": 25560,
"textRun": {
"content": "The ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 25576,
"startIndex": 25564,
"textRun": {
"content": "flutter_test",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://api.flutter.dev/flutter/flutter_test/flutter_test-library.html"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 25577,
"startIndex": 25576,
"textRun": {
"content": " ",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://api.flutter.dev/flutter/flutter_test/flutter_test-library.html"
},
"underline": true
}
}
},
{
"endIndex": 25584,
"startIndex": 25577,
"textRun": {
"content": "library",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://api.flutter.dev/flutter/flutter_test/flutter_test-library.html"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 25585,
"startIndex": 25584,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"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": 25560
},
{
"endIndex": 25608,
"paragraph": {
"bullet": {
"listId": "kix.vnpt9crrt431",
"textStyle": {}
},
"elements": [
{
"endIndex": 25589,
"startIndex": 25585,
"textRun": {
"content": "The ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 25601,
"startIndex": 25589,
"textRun": {
"content": "WidgetTester",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://api.flutter.dev/flutter/flutter_test/WidgetTester-class.html"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 25607,
"startIndex": 25601,
"textRun": {
"content": " class",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://api.flutter.dev/flutter/flutter_test/WidgetTester-class.html"
},
"underline": true
}
}
},
{
"endIndex": 25608,
"startIndex": 25607,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"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": 25585
},
{
"endIndex": 25646,
"paragraph": {
"elements": [
{
"endIndex": 25646,
"startIndex": 25608,
"textRun": {
"content": "Testing app UI with integration tests\n",
"textStyle": {
"fontSize": {
"magnitude": 18.0,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.lb4oolapswgl",
"namedStyleType": "HEADING_1"
}
},
"startIndex": 25608
},
{
"endIndex": 25662,
"paragraph": {
"elements": [
{
"endIndex": 25661,
"startIndex": 25646,
"textRun": {
"content": "Duration: 05:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 25662,
"startIndex": 25661,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25646
},
{
"endIndex": 25663,
"paragraph": {
"elements": [
{
"endIndex": 25663,
"startIndex": 25662,
"textRun": {
"content": "\n",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25662
},
{
"endIndex": 25997,
"paragraph": {
"elements": [
{
"endIndex": 25764,
"startIndex": 25663,
"textRun": {
"content": "Integration tests are used to test how the individual pieces of an app work together as a whole. The ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
}
}
},
{
"endIndex": 25780,
"startIndex": 25764,
"textRun": {
"content": "integration_test",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/flutter/tree/master/packages/integration_test#integration_test"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 25838,
"startIndex": 25780,
"textRun": {
"content": " library is used to perform integration tests in Flutter. ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
}
}
},
{
"endIndex": 25940,
"startIndex": 25838,
"textRun": {
"content": "This is Flutter's version of Selenium WebDriver, Protractor, Espresso, or Earl Gray. The package uses ",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.99215686,
"green": 0.99215686,
"red": 0.99215686
}
}
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.06666667,
"green": 0.06666667,
"red": 0.06666667
}
}
}
}
}
},
{
"endIndex": 25954,
"startIndex": 25940,
"textRun": {
"content": "flutter_driver",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.99215686,
"green": 0.99215686,
"red": 0.99215686
}
}
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://api.flutter.dev/flutter/flutter_driver/flutter_driver-library.html"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 25996,
"startIndex": 25954,
"textRun": {
"content": " internally to drive the test on a device.",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.99215686,
"green": 0.99215686,
"red": 0.99215686
}
}
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.06666667,
"green": 0.06666667,
"red": 0.06666667
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 25997,
"startIndex": 25996,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 18.0,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25663
},
{
"endIndex": 25998,
"paragraph": {
"elements": [
{
"endIndex": 25998,
"startIndex": 25997,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 25997
},
{
"endIndex": 26196,
"paragraph": {
"elements": [
{
"endIndex": 26195,
"startIndex": 25998,
"textRun": {
"content": "Writing integration tests in Flutter is similar to writing widget tests, with the exception that integration tests run on a mobile device, browser, or desktop application, called the target device.",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.99215686,
"green": 0.99215686,
"red": 0.99215686
}
}
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.06666667,
"green": 0.06666667,
"red": 0.06666667
}
}
}
}
}
},
{
"endIndex": 26196,
"startIndex": 26195,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 25998
},
{
"endIndex": 26211,
"paragraph": {
"elements": [
{
"endIndex": 26210,
"startIndex": 26196,
"textRun": {
"content": "Write the test",
"textStyle": {}
}
},
{
"endIndex": 26211,
"startIndex": 26210,
"textRun": {
"content": "\n",
"textStyle": {
"bold": false,
"fontSize": {
"magnitude": 16.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.tvwf13ue5p6g",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 26196
},
{
"endIndex": 26349,
"paragraph": {
"elements": [
{
"endIndex": 26212,
"inlineObjectElement": {
"inlineObjectId": "kix.lnhdx8vi6eyr",
"textStyle": {}
},
"startIndex": 26211
},
{
"endIndex": 26238,
"startIndex": 26212,
"textRun": {
"content": "Create a directory called ",
"textStyle": {}
}
},
{
"endIndex": 26254,
"startIndex": 26238,
"textRun": {
"content": "integration_test",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 26310,
"startIndex": 26254,
"textRun": {
"content": " in the project’s root directory, and in that directory ",
"textStyle": {}
}
},
{
"endIndex": 26334,
"startIndex": 26310,
"textRun": {
"content": "create a new file named ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 26347,
"startIndex": 26334,
"textRun": {
"content": "app_test.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 26349,
"startIndex": 26347,
"textRun": {
"content": ".\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 26211
},
{
"endIndex": 26380,
"paragraph": {
"elements": [
{
"endIndex": 26379,
"startIndex": 26349,
"textRun": {
"content": "integration_test/app_test.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/master/testing_codelab/step_07/integration_test/app_test.dart"
},
"underline": true
}
}
},
{
"endIndex": 26380,
"startIndex": 26379,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.chovoorugncs",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 26349
},
{
"endIndex": 27451,
"startIndex": 26380,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 27450,
"startIndex": 26381,
"tableCells": [
{
"content": [
{
"endIndex": 26423,
"paragraph": {
"elements": [
{
"endIndex": 26423,
"startIndex": 26383,
"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",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 26383
},
{
"endIndex": 26472,
"paragraph": {
"elements": [
{
"endIndex": 26472,
"startIndex": 26423,
"textRun": {
"content": "import 'package:flutter_test/flutter_test.dart';\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": 26423
},
{
"endIndex": 26512,
"paragraph": {
"elements": [
{
"endIndex": 26512,
"startIndex": 26472,
"textRun": {
"content": "import 'package:testing_app/main.dart';\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": 26472
},
{
"endIndex": 26513,
"paragraph": {
"elements": [
{
"endIndex": 26513,
"startIndex": 26512,
"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": 26512
},
{
"endIndex": 26527,
"paragraph": {
"elements": [
{
"endIndex": 26527,
"startIndex": 26513,
"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",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 26513
},
{
"endIndex": 26555,
"paragraph": {
"elements": [
{
"endIndex": 26555,
"startIndex": 26527,
"textRun": {
"content": " group('Testing App', () {\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": 26527
},
{
"endIndex": 26617,
"paragraph": {
"elements": [
{
"endIndex": 26617,
"startIndex": 26555,
"textRun": {
"content": " testWidgets('Favorites operations test', (tester) async {\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": 26555
},
{
"endIndex": 26668,
"paragraph": {
"elements": [
{
"endIndex": 26668,
"startIndex": 26617,
"textRun": {
"content": " await tester.pumpWidget(const TestingApp());\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": 26617
},
{
"endIndex": 26669,
"paragraph": {
"elements": [
{
"endIndex": 26669,
"startIndex": 26668,
"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": 26668
},
{
"endIndex": 26694,
"paragraph": {
"elements": [
{
"endIndex": 26694,
"startIndex": 26669,
"textRun": {
"content": " final iconKeys = [\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": 26669
},
{
"endIndex": 26712,
"paragraph": {
"elements": [
{
"endIndex": 26712,
"startIndex": 26694,
"textRun": {
"content": " 'icon_0',\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": 26694
},
{
"endIndex": 26730,
"paragraph": {
"elements": [
{
"endIndex": 26730,
"startIndex": 26712,
"textRun": {
"content": " 'icon_1',\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": 26712
},
{
"endIndex": 26748,
"paragraph": {
"elements": [
{
"endIndex": 26748,
"startIndex": 26730,
"textRun": {
"content": " 'icon_2',\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": 26730
},
{
"endIndex": 26757,
"paragraph": {
"elements": [
{
"endIndex": 26757,
"startIndex": 26748,
"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": 26748
},
{
"endIndex": 26758,
"paragraph": {
"elements": [
{
"endIndex": 26758,
"startIndex": 26757,
"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": 26757
},
{
"endIndex": 26793,
"paragraph": {
"elements": [
{
"endIndex": 26793,
"startIndex": 26758,
"textRun": {
"content": " for (var icon in iconKeys) {\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": 26758
},
{
"endIndex": 26847,
"paragraph": {
"elements": [
{
"endIndex": 26847,
"startIndex": 26793,
"textRun": {
"content": " await tester.tap(find.byKey(ValueKey(icon)));\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": 26793
},
{
"endIndex": 26911,
"paragraph": {
"elements": [
{
"endIndex": 26911,
"startIndex": 26847,
"textRun": {
"content": " await tester.pumpAndSettle(const Duration(seconds: 1));\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": 26847
},
{
"endIndex": 26912,
"paragraph": {
"elements": [
{
"endIndex": 26912,
"startIndex": 26911,
"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": 26911
},
{
"endIndex": 26978,
"paragraph": {
"elements": [
{
"endIndex": 26978,
"startIndex": 26912,
"textRun": {
"content": " expect(find.text('Added to favorites.'), findsOneWidget);\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": 26912
},
{
"endIndex": 26986,
"paragraph": {
"elements": [
{
"endIndex": 26986,
"startIndex": 26978,
"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": 26978
},
{
"endIndex": 26987,
"paragraph": {
"elements": [
{
"endIndex": 26987,
"startIndex": 26986,
"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": 26986
},
{
"endIndex": 27035,
"paragraph": {
"elements": [
{
"endIndex": 27035,
"startIndex": 26987,
"textRun": {
"content": " await tester.tap(find.text('Favorites'));\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": 26987
},
{
"endIndex": 27071,
"paragraph": {
"elements": [
{
"endIndex": 27071,
"startIndex": 27035,
"textRun": {
"content": " await tester.pumpAndSettle();\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": 27035
},
{
"endIndex": 27072,
"paragraph": {
"elements": [
{
"endIndex": 27072,
"startIndex": 27071,
"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": 27071
},
{
"endIndex": 27103,
"paragraph": {
"elements": [
{
"endIndex": 27103,
"startIndex": 27072,
"textRun": {
"content": " final removeIconKeys = [\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": 27072
},
{
"endIndex": 27128,
"paragraph": {
"elements": [
{
"endIndex": 27128,
"startIndex": 27103,
"textRun": {
"content": " 'remove_icon_0',\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": 27103
},
{
"endIndex": 27153,
"paragraph": {
"elements": [
{
"endIndex": 27153,
"startIndex": 27128,
"textRun": {
"content": " 'remove_icon_1',\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": 27128
},
{
"endIndex": 27178,
"paragraph": {
"elements": [
{
"endIndex": 27178,
"startIndex": 27153,
"textRun": {
"content": " 'remove_icon_2',\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": 27153
},
{
"endIndex": 27187,
"paragraph": {
"elements": [
{
"endIndex": 27187,
"startIndex": 27178,
"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": 27178
},
{
"endIndex": 27188,
"paragraph": {
"elements": [
{
"endIndex": 27188,
"startIndex": 27187,
"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": 27187
},
{
"endIndex": 27234,
"paragraph": {
"elements": [
{
"endIndex": 27234,
"startIndex": 27188,
"textRun": {
"content": " for (final iconKey in removeIconKeys) {\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": 27188
},
{
"endIndex": 27291,
"paragraph": {
"elements": [
{
"endIndex": 27291,
"startIndex": 27234,
"textRun": {
"content": " await tester.tap(find.byKey(ValueKey(iconKey)));\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": 27234
},
{
"endIndex": 27355,
"paragraph": {
"elements": [
{
"endIndex": 27355,
"startIndex": 27291,
"textRun": {
"content": " await tester.pumpAndSettle(const Duration(seconds: 1));\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": 27291
},
{
"endIndex": 27356,
"paragraph": {
"elements": [
{
"endIndex": 27356,
"startIndex": 27355,
"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": 27355
},
{
"endIndex": 27426,
"paragraph": {
"elements": [
{
"endIndex": 27426,
"startIndex": 27356,
"textRun": {
"content": " expect(find.text('Removed from favorites.'), findsOneWidget);\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": 27356
},
{
"endIndex": 27434,
"paragraph": {
"elements": [
{
"endIndex": 27434,
"startIndex": 27426,
"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": 27426
},
{
"endIndex": 27442,
"paragraph": {
"elements": [
{
"endIndex": 27442,
"startIndex": 27434,
"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": 27434
},
{
"endIndex": 27448,
"paragraph": {
"elements": [
{
"endIndex": 27448,
"startIndex": 27442,
"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": 27442
},
{
"endIndex": 27450,
"paragraph": {
"elements": [
{
"endIndex": 27450,
"startIndex": 27448,
"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": 27448
}
],
"endIndex": 27450,
"startIndex": 26382,
"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": 27452,
"paragraph": {
"elements": [
{
"endIndex": 27452,
"startIndex": 27451,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27451
},
{
"endIndex": 27465,
"paragraph": {
"elements": [
{
"endIndex": 27465,
"startIndex": 27452,
"textRun": {
"content": "Run the test\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.1lqalhwb26sl",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 27452
},
{
"endIndex": 27563,
"paragraph": {
"elements": [
{
"endIndex": 27466,
"inlineObjectElement": {
"inlineObjectId": "kix.vw1cipbmkp8e",
"textStyle": {}
},
"startIndex": 27465
},
{
"endIndex": 27563,
"startIndex": 27466,
"textRun": {
"content": "Plug-in your device or start your emulator. You can also run the test as a desktop application.\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 27465
},
{
"endIndex": 27659,
"paragraph": {
"elements": [
{
"endIndex": 27564,
"inlineObjectElement": {
"inlineObjectId": "kix.c1qm4t30t535",
"textStyle": {}
},
"startIndex": 27563
},
{
"endIndex": 27586,
"startIndex": 27564,
"textRun": {
"content": "At the command line, n",
"textStyle": {}
}
},
{
"endIndex": 27658,
"startIndex": 27586,
"textRun": {
"content": "avigate to the project’s root directory and enter the following command:",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 27659,
"startIndex": 27658,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 27563
},
{
"endIndex": 27709,
"startIndex": 27659,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 27708,
"startIndex": 27660,
"tableCells": [
{
"content": [
{
"endIndex": 27708,
"paragraph": {
"elements": [
{
"endIndex": 27708,
"startIndex": 27662,
"textRun": {
"content": "$ flutter test integration_test/app_test.dart\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": 27662
}
],
"endIndex": 27708,
"startIndex": 27661,
"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": 27710,
"paragraph": {
"elements": [
{
"endIndex": 27710,
"startIndex": 27709,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27709
},
{
"endIndex": 27782,
"paragraph": {
"elements": [
{
"endIndex": 27782,
"startIndex": 27710,
"textRun": {
"content": "If everything works, you should see an output similar to the following:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27710
},
{
"endIndex": 27783,
"paragraph": {
"elements": [
{
"endIndex": 27783,
"startIndex": 27782,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 27782
},
{
"endIndex": 28329,
"startIndex": 27783,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 28328,
"startIndex": 27784,
"tableCells": [
{
"content": [
{
"endIndex": 27810,
"paragraph": {
"elements": [
{
"endIndex": 27810,
"startIndex": 27786,
"textRun": {
"content": "Multiple devices found:\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 27786
},
{
"endIndex": 27891,
"paragraph": {
"elements": [
{
"endIndex": 27891,
"startIndex": 27810,
"textRun": {
"content": "Linux (desktop) • linux • linux-x64 • Ubuntu 22.04.1 LTS 5.15.0-58-generic\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 27810
},
{
"endIndex": 27964,
"paragraph": {
"elements": [
{
"endIndex": 27964,
"startIndex": 27891,
"textRun": {
"content": "Chrome (web) • chrome • web-javascript • Google Chrome 109.0.5414.119\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 27891
},
{
"endIndex": 27983,
"paragraph": {
"elements": [
{
"endIndex": 27983,
"startIndex": 27964,
"textRun": {
"content": "[1]: Linux (linux)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 27964
},
{
"endIndex": 28004,
"paragraph": {
"elements": [
{
"endIndex": 28004,
"startIndex": 27983,
"textRun": {
"content": "[2]: Chrome (chrome)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 27983
},
{
"endIndex": 28048,
"paragraph": {
"elements": [
{
"endIndex": 28048,
"startIndex": 28004,
"textRun": {
"content": "Please choose one (To quit, press \"q/Q\"): 1\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 28004
},
{
"endIndex": 28300,
"paragraph": {
"elements": [
{
"endIndex": 28300,
"startIndex": 28048,
"textRun": {
"content": "00:00 +0: loading /home/miquel/tmp/testing_app/integration_test/app_test.dart B00:08 +0: loading /home/miquel/tmp/testing_app/integration_test/app_test.dart \n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 28048
},
{
"endIndex": 28328,
"paragraph": {
"elements": [
{
"endIndex": 28328,
"startIndex": 28300,
"textRun": {
"content": "00:26 +1: All tests passed!\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 28300
}
],
"endIndex": 28328,
"startIndex": 27785,
"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": 28330,
"paragraph": {
"elements": [
{
"endIndex": 28330,
"startIndex": 28329,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceBelow": {
"magnitude": 12.0,
"unit": "PT"
}
}
},
"startIndex": 28329
},
{
"endIndex": 28331,
"paragraph": {
"elements": [
{
"endIndex": 28331,
"startIndex": 28330,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28330
},
{
"endIndex": 28466,
"startIndex": 28331,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 28465,
"startIndex": 28332,
"tableCells": [
{
"content": [
{
"endIndex": 28465,
"paragraph": {
"elements": [
{
"endIndex": 28340,
"startIndex": 28334,
"textRun": {
"content": "Note: ",
"textStyle": {
"bold": true
}
}
},
{
"endIndex": 28430,
"startIndex": 28340,
"textRun": {
"content": "Running integration tests on Chrome requires a different setup, which can be found in the ",
"textStyle": {}
}
},
{
"endIndex": 28463,
"startIndex": 28430,
"textRun": {
"content": "integration testing documentation",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://docs.flutter.dev/testing/integration-tests"
},
"underline": true
}
}
},
{
"endIndex": 28465,
"startIndex": 28463,
"textRun": {
"content": ".\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28334
}
],
"endIndex": 28465,
"startIndex": 28333,
"tableCellStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.827451,
"green": 0.91764706,
"red": 0.8509804
}
}
},
"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": 28467,
"paragraph": {
"elements": [
{
"endIndex": 28467,
"startIndex": 28466,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28466
},
{
"endIndex": 28468,
"paragraph": {
"elements": [
{
"endIndex": 28468,
"startIndex": 28467,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceBelow": {
"magnitude": 12.0,
"unit": "PT"
}
}
},
"startIndex": 28467
},
{
"endIndex": 28512,
"paragraph": {
"elements": [
{
"endIndex": 28512,
"startIndex": 28468,
"textRun": {
"content": "Testing app performance with Flutter Driver\n",
"textStyle": {
"fontSize": {
"magnitude": 18.0,
"unit": "PT"
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.taqgmwcoaqg",
"namedStyleType": "HEADING_1"
}
},
"startIndex": 28468
},
{
"endIndex": 28528,
"paragraph": {
"elements": [
{
"endIndex": 28527,
"startIndex": 28512,
"textRun": {
"content": "Duration: 05:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 28528,
"startIndex": 28527,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28512
},
{
"endIndex": 28553,
"paragraph": {
"elements": [
{
"endIndex": 28553,
"startIndex": 28528,
"textRun": {
"content": "Write a performance test\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.2bdo8691h79t",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 28528
},
{
"endIndex": 28554,
"paragraph": {
"elements": [
{
"endIndex": 28554,
"startIndex": 28553,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28553
},
{
"endIndex": 28657,
"paragraph": {
"elements": [
{
"endIndex": 28656,
"startIndex": 28554,
"textRun": {
"content": "Create a new test file named perf_test.dart in the integration_test folder with the following content:",
"textStyle": {}
}
},
{
"endIndex": 28657,
"startIndex": 28656,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 28554
},
{
"endIndex": 28689,
"paragraph": {
"elements": [
{
"endIndex": 28688,
"startIndex": 28657,
"textRun": {
"content": "integration_test/perf_test.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/testing_codelab/step_08/integration_test/perf_test.dart"
},
"underline": true
}
}
},
{
"endIndex": 28689,
"startIndex": 28688,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.926ood5ssvbr",
"namedStyleType": "HEADING_3",
"pageBreakBefore": false
}
},
"startIndex": 28657
},
{
"endIndex": 29560,
"startIndex": 28689,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 29559,
"startIndex": 28690,
"tableCells": [
{
"content": [
{
"endIndex": 28732,
"paragraph": {
"elements": [
{
"endIndex": 28732,
"startIndex": 28692,
"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": 28692
},
{
"endIndex": 28781,
"paragraph": {
"elements": [
{
"endIndex": 28781,
"startIndex": 28732,
"textRun": {
"content": "import 'package:flutter_test/flutter_test.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": 28732
},
{
"endIndex": 28838,
"paragraph": {
"elements": [
{
"endIndex": 28838,
"startIndex": 28781,
"textRun": {
"content": "import 'package:integration_test/integration_test.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": 28781
},
{
"endIndex": 28878,
"paragraph": {
"elements": [
{
"endIndex": 28878,
"startIndex": 28838,
"textRun": {
"content": "import 'package:testing_app/main.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": 28838
},
{
"endIndex": 28879,
"paragraph": {
"elements": [
{
"endIndex": 28879,
"startIndex": 28878,
"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": 28878
},
{
"endIndex": 28893,
"paragraph": {
"elements": [
{
"endIndex": 28893,
"startIndex": 28879,
"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": 28879
},
{
"endIndex": 28933,
"paragraph": {
"elements": [
{
"endIndex": 28933,
"startIndex": 28893,
"textRun": {
"content": " group('Testing App Performance', () {\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": 28893
},
{
"endIndex": 29011,
"paragraph": {
"elements": [
{
"endIndex": 29011,
"startIndex": 28933,
"textRun": {
"content": " final binding = IntegrationTestWidgetsFlutterBinding.ensureInitialized();\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": 28933
},
{
"endIndex": 29089,
"paragraph": {
"elements": [
{
"endIndex": 29089,
"startIndex": 29011,
"textRun": {
"content": " binding.framePolicy = LiveTestWidgetsFlutterBindingFramePolicy.fullyLive;\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": 29011
},
{
"endIndex": 29090,
"paragraph": {
"elements": [
{
"endIndex": 29090,
"startIndex": 29089,
"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": 29089
},
{
"endIndex": 29141,
"paragraph": {
"elements": [
{
"endIndex": 29141,
"startIndex": 29090,
"textRun": {
"content": " testWidgets('Scrolling test', (tester) 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": 29090
},
{
"endIndex": 29192,
"paragraph": {
"elements": [
{
"endIndex": 29192,
"startIndex": 29141,
"textRun": {
"content": " await tester.pumpWidget(const TestingApp());\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": 29141
},
{
"endIndex": 29193,
"paragraph": {
"elements": [
{
"endIndex": 29193,
"startIndex": 29192,
"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": 29192
},
{
"endIndex": 29241,
"paragraph": {
"elements": [
{
"endIndex": 29241,
"startIndex": 29193,
"textRun": {
"content": " final listFinder = find.byType(ListView);\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": 29193
},
{
"endIndex": 29242,
"paragraph": {
"elements": [
{
"endIndex": 29242,
"startIndex": 29241,
"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": 29241
},
{
"endIndex": 29285,
"paragraph": {
"elements": [
{
"endIndex": 29285,
"startIndex": 29242,
"textRun": {
"content": " await binding.traceAction(() 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": 29242
},
{
"endIndex": 29355,
"paragraph": {
"elements": [
{
"endIndex": 29355,
"startIndex": 29285,
"textRun": {
"content": " await tester.fling(listFinder, const Offset(0, -500), 10000);\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": 29285
},
{
"endIndex": 29393,
"paragraph": {
"elements": [
{
"endIndex": 29393,
"startIndex": 29355,
"textRun": {
"content": " await tester.pumpAndSettle();\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": 29355
},
{
"endIndex": 29394,
"paragraph": {
"elements": [
{
"endIndex": 29394,
"startIndex": 29393,
"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": 29393
},
{
"endIndex": 29463,
"paragraph": {
"elements": [
{
"endIndex": 29463,
"startIndex": 29394,
"textRun": {
"content": " await tester.fling(listFinder, const Offset(0, 500), 10000);\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": 29394
},
{
"endIndex": 29501,
"paragraph": {
"elements": [
{
"endIndex": 29501,
"startIndex": 29463,
"textRun": {
"content": " await tester.pumpAndSettle();\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": 29463
},
{
"endIndex": 29543,
"paragraph": {
"elements": [
{
"endIndex": 29543,
"startIndex": 29501,
"textRun": {
"content": " }, reportKey: 'scrolling_summary');\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": 29501
},
{
"endIndex": 29551,
"paragraph": {
"elements": [
{
"endIndex": 29551,
"startIndex": 29543,
"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": 29543
},
{
"endIndex": 29557,
"paragraph": {
"elements": [
{
"endIndex": 29557,
"startIndex": 29551,
"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": 29551
},
{
"endIndex": 29559,
"paragraph": {
"elements": [
{
"endIndex": 29559,
"startIndex": 29557,
"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": 29557
}
],
"endIndex": 29559,
"startIndex": 28691,
"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": 29561,
"paragraph": {
"elements": [
{
"endIndex": 29561,
"startIndex": 29560,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 29560
},
{
"endIndex": 29749,
"paragraph": {
"elements": [
{
"endIndex": 29565,
"startIndex": 29561,
"textRun": {
"content": "The ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 29584,
"startIndex": 29565,
"textRun": {
"content": "ensureInitialized()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 29689,
"startIndex": 29584,
"textRun": {
"content": " function verifies if the integration test driver is initialized, reinitializing it if required. Setting ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 29700,
"startIndex": 29689,
"textRun": {
"content": "framePolicy",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 29704,
"startIndex": 29700,
"textRun": {
"content": " to ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 29713,
"startIndex": 29704,
"textRun": {
"content": "fullyLive",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 29734,
"startIndex": 29713,
"textRun": {
"content": " is good for testing ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 29748,
"startIndex": 29734,
"textRun": {
"content": "animated code.",
"textStyle": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 0.99215686,
"green": 0.99215686,
"red": 0.99215686
}
}
},
"fontSize": {
"magnitude": 11.5,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.12941177,
"green": 0.12941177,
"red": 0.12941177
}
}
}
}
}
},
{
"endIndex": 29749,
"startIndex": 29748,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 29561
},
{
"endIndex": 29750,
"paragraph": {
"elements": [
{
"endIndex": 29750,
"startIndex": 29749,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 29749
},
{
"endIndex": 29920,
"paragraph": {
"elements": [
{
"endIndex": 29843,
"startIndex": 29750,
"textRun": {
"content": "This test scrolls through the list of items really fast and then scrolls all the way up. The ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 29856,
"startIndex": 29843,
"textRun": {
"content": "traceAction()",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 29920,
"startIndex": 29856,
"textRun": {
"content": " function records the actions and generates a timeline summary.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 29750
},
{
"endIndex": 29921,
"paragraph": {
"elements": [
{
"endIndex": 29921,
"startIndex": 29920,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 29920
},
{
"endIndex": 29953,
"paragraph": {
"elements": [
{
"endIndex": 29953,
"startIndex": 29921,
"textRun": {
"content": "Capture the performance results\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.k9x9lpdpqq14",
"namedStyleType": "HEADING_2"
}
},
"startIndex": 29921
},
{
"endIndex": 29954,
"paragraph": {
"elements": [
{
"endIndex": 29954,
"startIndex": 29953,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 29953
},
{
"endIndex": 30076,
"paragraph": {
"elements": [
{
"endIndex": 30000,
"startIndex": 29954,
"textRun": {
"content": "To capture the results, create a folder named ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 30011,
"startIndex": 30000,
"textRun": {
"content": "test_driver",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 30030,
"startIndex": 30011,
"textRun": {
"content": " with a file named ",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 30046,
"startIndex": 30030,
"textRun": {
"content": "perf_driver.dart",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 30076,
"startIndex": 30046,
"textRun": {
"content": ", and add the following code:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 29954
},
{
"endIndex": 30077,
"paragraph": {
"elements": [
{
"endIndex": 30077,
"startIndex": 30076,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 30076
},
{
"endIndex": 30106,
"paragraph": {
"elements": [
{
"endIndex": 30105,
"startIndex": 30077,
"textRun": {
"content": "test_driver/perf_driver.dart",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/blob/main/testing_codelab/step_08/test_driver/perf_driver.dart"
},
"underline": true
}
}
},
{
"endIndex": 30106,
"startIndex": 30105,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.u5xt3q47y9fk",
"namedStyleType": "HEADING_3"
}
},
"startIndex": 30077
},
{
"endIndex": 30704,
"startIndex": 30106,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 30703,
"startIndex": 30107,
"tableCells": [
{
"content": [
{
"endIndex": 30172,
"paragraph": {
"elements": [
{
"endIndex": 30172,
"startIndex": 30109,
"textRun": {
"content": "import 'package:flutter_driver/flutter_driver.dart' as driver;\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": 30109
},
{
"endIndex": 30236,
"paragraph": {
"elements": [
{
"endIndex": 30236,
"startIndex": 30172,
"textRun": {
"content": "import 'package:integration_test/integration_test_driver.dart';\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": 30172
},
{
"endIndex": 30237,
"paragraph": {
"elements": [
{
"endIndex": 30237,
"startIndex": 30236,
"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": 30236
},
{
"endIndex": 30259,
"paragraph": {
"elements": [
{
"endIndex": 30259,
"startIndex": 30237,
"textRun": {
"content": "Future<void> main() {\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": 30237
},
{
"endIndex": 30287,
"paragraph": {
"elements": [
{
"endIndex": 30287,
"startIndex": 30259,
"textRun": {
"content": " return integrationDriver(\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": 30259
},
{
"endIndex": 30328,
"paragraph": {
"elements": [
{
"endIndex": 30328,
"startIndex": 30287,
"textRun": {
"content": " responseDataCallback: (data) async {\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": 30287
},
{
"endIndex": 30354,
"paragraph": {
"elements": [
{
"endIndex": 30354,
"startIndex": 30328,
"textRun": {
"content": " if (data != null) {\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": 30328
},
{
"endIndex": 30405,
"paragraph": {
"elements": [
{
"endIndex": 30405,
"startIndex": 30354,
"textRun": {
"content": " final timeline = driver.Timeline.fromJson(\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": 30354
},
{
"endIndex": 30469,
"paragraph": {
"elements": [
{
"endIndex": 30469,
"startIndex": 30405,
"textRun": {
"content": " data['scrolling_summary'] 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",
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 30405
},
{
"endIndex": 30470,
"paragraph": {
"elements": [
{
"endIndex": 30470,
"startIndex": 30469,
"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": 30469
},
{
"endIndex": 30538,
"paragraph": {
"elements": [
{
"endIndex": 30538,
"startIndex": 30470,
"textRun": {
"content": " final summary = driver.TimelineSummary.summarize(timeline);\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": 30470
},
{
"endIndex": 30539,
"paragraph": {
"elements": [
{
"endIndex": 30539,
"startIndex": 30538,
"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": 30538
},
{
"endIndex": 30582,
"paragraph": {
"elements": [
{
"endIndex": 30582,
"startIndex": 30539,
"textRun": {
"content": " await summary.writeTimelineToFile(\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": 30539
},
{
"endIndex": 30613,
"paragraph": {
"elements": [
{
"endIndex": 30613,
"startIndex": 30582,
"textRun": {
"content": " 'scrolling_summary',\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": 30582
},
{
"endIndex": 30637,
"paragraph": {
"elements": [
{
"endIndex": 30637,
"startIndex": 30613,
"textRun": {
"content": " pretty: true,\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": 30613
},
{
"endIndex": 30669,
"paragraph": {
"elements": [
{
"endIndex": 30669,
"startIndex": 30637,
"textRun": {
"content": " includeSummary: true,\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": 30637
},
{
"endIndex": 30680,
"paragraph": {
"elements": [
{
"endIndex": 30680,
"startIndex": 30669,
"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": 30669
},
{
"endIndex": 30688,
"paragraph": {
"elements": [
{
"endIndex": 30688,
"startIndex": 30680,
"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": 30680
},
{
"endIndex": 30695,
"paragraph": {
"elements": [
{
"endIndex": 30695,
"startIndex": 30688,
"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": 30688
},
{
"endIndex": 30700,
"paragraph": {
"elements": [
{
"endIndex": 30700,
"startIndex": 30695,
"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": 30695
},
{
"endIndex": 30702,
"paragraph": {
"elements": [
{
"endIndex": 30702,
"startIndex": 30700,
"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": 30700
},
{
"endIndex": 30703,
"paragraph": {
"elements": [
{
"endIndex": 30703,
"startIndex": 30702,
"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": 30702
}
],
"endIndex": 30703,
"startIndex": 30108,
"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": 30705,
"paragraph": {
"elements": [
{
"endIndex": 30705,
"startIndex": 30704,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT"
}
},
"startIndex": 30704
},
{
"endIndex": 30706,
"paragraph": {
"elements": [
{
"endIndex": 30706,
"startIndex": 30705,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 30705
},
{
"endIndex": 30707,
"paragraph": {
"elements": [
{
"endIndex": 30707,
"startIndex": 30706,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 30706
},
{
"endIndex": 30708,
"paragraph": {
"elements": [
{
"endIndex": 30708,
"startIndex": 30707,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 30707
},
{
"endIndex": 30721,
"paragraph": {
"elements": [
{
"endIndex": 30721,
"startIndex": 30708,
"textRun": {
"content": "Run the test\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.deav4oq6epb2",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 30708
},
{
"endIndex": 30766,
"paragraph": {
"elements": [
{
"endIndex": 30722,
"inlineObjectElement": {
"inlineObjectId": "kix.hppjblw9dxbi",
"textStyle": {}
},
"startIndex": 30721
},
{
"endIndex": 30765,
"startIndex": 30722,
"textRun": {
"content": "Plug-in your device or start your emulator.",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 30766,
"startIndex": 30765,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 30721
},
{
"endIndex": 30862,
"paragraph": {
"elements": [
{
"endIndex": 30767,
"inlineObjectElement": {
"inlineObjectId": "kix.4fzvwyc0uikm",
"textStyle": {}
},
"startIndex": 30766
},
{
"endIndex": 30789,
"startIndex": 30767,
"textRun": {
"content": "At the command line, n",
"textStyle": {}
}
},
{
"endIndex": 30861,
"startIndex": 30789,
"textRun": {
"content": "avigate to the project’s root directory and enter the following command:",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
},
{
"endIndex": 30862,
"startIndex": 30861,
"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,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceAbove": {
"magnitude": 16.0,
"unit": "PT"
},
"spaceBelow": {
"magnitude": 16.0,
"unit": "PT"
}
}
},
"startIndex": 30766
},
{
"endIndex": 30996,
"startIndex": 30862,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 30995,
"startIndex": 30863,
"tableCells": [
{
"content": [
{
"endIndex": 30883,
"paragraph": {
"elements": [
{
"endIndex": 30883,
"startIndex": 30865,
"textRun": {
"content": "$ flutter drive \\\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": 30865
},
{
"endIndex": 30925,
"paragraph": {
"elements": [
{
"endIndex": 30925,
"startIndex": 30883,
"textRun": {
"content": " --driver=test_driver/perf_driver.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": 30883
},
{
"endIndex": 30970,
"paragraph": {
"elements": [
{
"endIndex": 30970,
"startIndex": 30925,
"textRun": {
"content": " --target=integration_test/perf_test.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": 30925
},
{
"endIndex": 30984,
"paragraph": {
"elements": [
{
"endIndex": 30984,
"startIndex": 30970,
"textRun": {
"content": " --profile \\\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": 30970
},
{
"endIndex": 30995,
"paragraph": {
"elements": [
{
"endIndex": 30995,
"startIndex": 30984,
"textRun": {
"content": " --no-dds\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": 30984
}
],
"endIndex": 30995,
"startIndex": 30864,
"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": 30997,
"paragraph": {
"elements": [
{
"endIndex": 30997,
"startIndex": 30996,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 30996
},
{
"endIndex": 31069,
"paragraph": {
"elements": [
{
"endIndex": 31069,
"startIndex": 30997,
"textRun": {
"content": "If everything works, you should see an output similar to the following:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 30997
},
{
"endIndex": 31070,
"paragraph": {
"elements": [
{
"endIndex": 31070,
"startIndex": 31069,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 31069
},
{
"endIndex": 31890,
"startIndex": 31070,
"table": {
"columns": 1,
"rows": 1,
"tableRows": [
{
"endIndex": 31889,
"startIndex": 31071,
"tableCells": [
{
"content": [
{
"endIndex": 31117,
"paragraph": {
"elements": [
{
"endIndex": 31117,
"startIndex": 31073,
"textRun": {
"content": "Running \"flutter pub get\" in testing_app...\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31073
},
{
"endIndex": 31144,
"paragraph": {
"elements": [
{
"endIndex": 31144,
"startIndex": 31117,
"textRun": {
"content": "Resolving dependencies... \n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31117
},
{
"endIndex": 31178,
"paragraph": {
"elements": [
{
"endIndex": 31178,
"startIndex": 31144,
"textRun": {
"content": " archive 3.3.2 (3.3.6 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31144
},
{
"endIndex": 31217,
"paragraph": {
"elements": [
{
"endIndex": 31217,
"startIndex": 31178,
"textRun": {
"content": " collection 1.17.0 (1.17.1 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31178
},
{
"endIndex": 31246,
"paragraph": {
"elements": [
{
"endIndex": 31246,
"startIndex": 31217,
"textRun": {
"content": " js 0.6.5 (0.6.7 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31217
},
{
"endIndex": 31284,
"paragraph": {
"elements": [
{
"endIndex": 31284,
"startIndex": 31246,
"textRun": {
"content": " matcher 0.12.13 (0.12.14 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31246
},
{
"endIndex": 31315,
"paragraph": {
"elements": [
{
"endIndex": 31315,
"startIndex": 31284,
"textRun": {
"content": " meta 1.8.0 (1.9.0 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31284
},
{
"endIndex": 31346,
"paragraph": {
"elements": [
{
"endIndex": 31346,
"startIndex": 31315,
"textRun": {
"content": " path 1.8.2 (1.8.3 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31315
},
{
"endIndex": 31379,
"paragraph": {
"elements": [
{
"endIndex": 31379,
"startIndex": 31346,
"textRun": {
"content": " test 1.22.0 (1.23.0 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31346
},
{
"endIndex": 31416,
"paragraph": {
"elements": [
{
"endIndex": 31416,
"startIndex": 31379,
"textRun": {
"content": " test_api 0.4.16 (0.4.18 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31379
},
{
"endIndex": 31454,
"paragraph": {
"elements": [
{
"endIndex": 31454,
"startIndex": 31416,
"textRun": {
"content": " test_core 0.4.20 (0.4.23 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31416
},
{
"endIndex": 31492,
"paragraph": {
"elements": [
{
"endIndex": 31492,
"startIndex": 31454,
"textRun": {
"content": " vm_service 9.4.0 (11.0.1 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31454
},
{
"endIndex": 31528,
"paragraph": {
"elements": [
{
"endIndex": 31528,
"startIndex": 31492,
"textRun": {
"content": " webdriver 3.0.1 (3.0.2 available)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31492
},
{
"endIndex": 31546,
"paragraph": {
"elements": [
{
"endIndex": 31546,
"startIndex": 31528,
"textRun": {
"content": "Got dependencies!\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31528
},
{
"endIndex": 31619,
"paragraph": {
"elements": [
{
"endIndex": 31619,
"startIndex": 31546,
"textRun": {
"content": "Running Gradle task 'assembleProfile'... 1,379ms\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31546
},
{
"endIndex": 31684,
"paragraph": {
"elements": [
{
"endIndex": 31684,
"startIndex": 31619,
"textRun": {
"content": "✓ Built build/app/outputs/flutter-apk/app-profile.apk (14.9MB).\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31619
},
{
"endIndex": 31757,
"paragraph": {
"elements": [
{
"endIndex": 31757,
"startIndex": 31684,
"textRun": {
"content": "Installing build/app/outputs/flutter-apk/app-profile.apk... 222ms\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31684
},
{
"endIndex": 31824,
"paragraph": {
"elements": [
{
"endIndex": 31824,
"startIndex": 31757,
"textRun": {
"content": "I/flutter ( 6125): 00:04 +1: Testing App Performance (tearDownAll)\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31757
},
{
"endIndex": 31871,
"paragraph": {
"elements": [
{
"endIndex": 31871,
"startIndex": 31824,
"textRun": {
"content": "I/flutter ( 6125): 00:04 +2: All tests passed!\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31824
},
{
"endIndex": 31889,
"paragraph": {
"elements": [
{
"endIndex": 31889,
"startIndex": 31871,
"textRun": {
"content": "All tests passed.\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31871
}
],
"endIndex": 31889,
"startIndex": 31072,
"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": 31891,
"paragraph": {
"elements": [
{
"endIndex": 31891,
"startIndex": 31890,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceBelow": {
"magnitude": 12.0,
"unit": "PT"
}
}
},
"startIndex": 31890
},
{
"endIndex": 31997,
"paragraph": {
"elements": [
{
"endIndex": 31997,
"startIndex": 31891,
"textRun": {
"content": "After the test completes successfully, the build directory at the root of the project contains two files:\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceBelow": {
"magnitude": 12.0,
"unit": "PT"
}
}
},
"startIndex": 31891
},
{
"endIndex": 31998,
"paragraph": {
"elements": [
{
"endIndex": 31998,
"startIndex": 31997,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceBelow": {
"magnitude": 12.0,
"unit": "PT"
}
}
},
"startIndex": 31997
},
{
"endIndex": 32139,
"paragraph": {
"bullet": {
"listId": "kix.4sih8svsyp",
"textStyle": {
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 32037,
"startIndex": 31998,
"textRun": {
"content": "scrolling_summary.timeline_summary.json",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32139,
"startIndex": 32037,
"textRun": {
"content": " contains the summary. Open the file with any text editor to review the information contained within.\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,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceBelow": {
"magnitude": 12.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 31998
},
{
"endIndex": 32208,
"paragraph": {
"bullet": {
"listId": "kix.4sih8svsyp",
"textStyle": {
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 32170,
"startIndex": 32139,
"textRun": {
"content": "scrolling_summary.timeline.json",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32207,
"startIndex": 32170,
"textRun": {
"content": " contains the complete timeline data.",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 32208,
"startIndex": 32207,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 18.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,
"shading": {
"backgroundColor": {
"color": {
"rgbColor": {
"blue": 1.0,
"green": 1.0,
"red": 1.0
}
}
}
},
"spaceBelow": {
"magnitude": 12.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 32139
},
{
"endIndex": 32209,
"paragraph": {
"elements": [
{
"endIndex": 32209,
"startIndex": 32208,
"textRun": {
"content": "\n",
"textStyle": {
"bold": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 32208
},
{
"endIndex": 32257,
"paragraph": {
"elements": [
{
"endIndex": 32257,
"startIndex": 32209,
"textRun": {
"content": "For more details on integration testing, visit:\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 32209
},
{
"endIndex": 32258,
"paragraph": {
"elements": [
{
"endIndex": 32258,
"startIndex": 32257,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"direction": "LEFT_TO_RIGHT",
"lineSpacing": 100.0,
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 32257
},
{
"endIndex": 32297,
"paragraph": {
"bullet": {
"listId": "kix.zdub7zofx4i9",
"textStyle": {}
},
"elements": [
{
"endIndex": 32296,
"startIndex": 32258,
"textRun": {
"content": "An introduction to integration testing",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://flutter.dev/docs/cookbook/testing/integration/introduction"
},
"underline": true
}
}
},
{
"endIndex": 32297,
"startIndex": 32296,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"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": 32258
},
{
"endIndex": 32320,
"paragraph": {
"bullet": {
"listId": "kix.zdub7zofx4i9",
"textStyle": {
"underline": false
}
},
"elements": [
{
"endIndex": 32318,
"startIndex": 32297,
"textRun": {
"content": "Performance profiling",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://docs.flutter.dev/cookbook/testing/integration/profiling"
},
"underline": true
}
}
},
{
"endIndex": 32320,
"startIndex": 32318,
"textRun": {
"content": " \n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"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": 32297
},
{
"endIndex": 32350,
"paragraph": {
"bullet": {
"listId": "kix.zdub7zofx4i9",
"textStyle": {}
},
"elements": [
{
"endIndex": 32336,
"startIndex": 32320,
"textRun": {
"content": "integration_test",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dev/documentation/integration_test/latest/"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Courier New",
"weight": 400
}
}
}
},
{
"endIndex": 32349,
"startIndex": 32336,
"textRun": {
"content": " library docs",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://pub.dev/documentation/integration_test/latest/"
},
"underline": true
}
}
},
{
"endIndex": 32350,
"startIndex": 32349,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"avoidWidowAndOrphan": false,
"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": 32320
},
{
"endIndex": 32351,
"paragraph": {
"elements": [
{
"endIndex": 32351,
"startIndex": 32350,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 32350
},
{
"endIndex": 32353,
"paragraph": {
"elements": [
{
"endIndex": 32352,
"horizontalRule": {
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"startIndex": 32351
},
{
"endIndex": 32353,
"startIndex": 32352,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false,
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 32351
},
{
"endIndex": 32354,
"paragraph": {
"elements": [
{
"endIndex": 32354,
"startIndex": 32353,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.on2ervh3csag",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 32353
},
{
"endIndex": 32371,
"paragraph": {
"elements": [
{
"endIndex": 32370,
"startIndex": 32354,
"textRun": {
"content": "Congratulations!",
"textStyle": {
"fontSize": {
"magnitude": 18.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"weight": 400
}
}
}
},
{
"endIndex": 32371,
"startIndex": 32370,
"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": 32354
},
{
"endIndex": 32386,
"paragraph": {
"elements": [
{
"endIndex": 32385,
"startIndex": 32371,
"textRun": {
"content": "Duration: 0:00",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.7176471,
"green": 0.7176471,
"red": 0.7176471
}
}
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 32386,
"startIndex": 32385,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 32371
},
{
"endIndex": 32387,
"paragraph": {
"elements": [
{
"endIndex": 32387,
"startIndex": 32386,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 32386
},
{
"endIndex": 32471,
"paragraph": {
"elements": [
{
"endIndex": 32471,
"startIndex": 32387,
"textRun": {
"content": "You’ve completed the codelab and have learned different ways to test a Flutter app.\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 32387
},
{
"endIndex": 32472,
"paragraph": {
"elements": [
{
"endIndex": 32472,
"startIndex": 32471,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 32471
},
{
"endIndex": 32492,
"paragraph": {
"elements": [
{
"endIndex": 32492,
"startIndex": 32472,
"textRun": {
"content": "What you’ve learned\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"headingId": "h.1hcibaejjgkm",
"namedStyleType": "HEADING_2",
"pageBreakBefore": false
}
},
"startIndex": 32472
},
{
"endIndex": 32493,
"paragraph": {
"elements": [
{
"endIndex": 32493,
"startIndex": 32492,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 32492
},
{
"endIndex": 32543,
"paragraph": {
"bullet": {
"listId": "kix.a0852rs47fk1",
"textStyle": {
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 32543,
"startIndex": 32493,
"textRun": {
"content": "How to test providers with the help of unit tests\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,
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 32493
},
{
"endIndex": 32598,
"paragraph": {
"bullet": {
"listId": "kix.a0852rs47fk1",
"textStyle": {
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 32598,
"startIndex": 32543,
"textRun": {
"content": "How to test widgets using the widget testing framework\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,
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 32543
},
{
"endIndex": 32647,
"paragraph": {
"bullet": {
"listId": "kix.a0852rs47fk1",
"textStyle": {
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 32647,
"startIndex": 32598,
"textRun": {
"content": "How to test the app’s UI using integration tests\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,
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 32598
},
{
"endIndex": 32705,
"paragraph": {
"bullet": {
"listId": "kix.a0852rs47fk1",
"textStyle": {
"fontSize": {
"magnitude": 11.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 32705,
"startIndex": 32647,
"textRun": {
"content": "How to test the app’s performance using integration tests\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,
"spaceBelow": {
"magnitude": 27.0,
"unit": "PT"
},
"spacingMode": "COLLAPSE_LISTS"
}
},
"startIndex": 32647
},
{
"endIndex": 32751,
"paragraph": {
"elements": [
{
"endIndex": 32751,
"startIndex": 32705,
"textRun": {
"content": "To learn more about testing in Flutter, visit\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 32705
},
{
"endIndex": 32752,
"paragraph": {
"elements": [
{
"endIndex": 32752,
"startIndex": 32751,
"textRun": {
"content": "\n",
"textStyle": {
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
},
"startIndex": 32751
},
{
"endIndex": 32773,
"paragraph": {
"bullet": {
"listId": "kix.ok1uo0sqganv",
"textStyle": {
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 32772,
"startIndex": 32752,
"textRun": {
"content": "Testing Flutter apps",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://flutter.dev/docs/testing"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 32773,
"startIndex": 32772,
"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": 32752
},
{
"endIndex": 32801,
"paragraph": {
"bullet": {
"listId": "kix.ok1uo0sqganv",
"textStyle": {
"underline": false,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
},
"elements": [
{
"endIndex": 32800,
"startIndex": 32773,
"textRun": {
"content": "The app you built on GitHub",
"textStyle": {
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.8,
"green": 0.33333334,
"red": 0.06666667
}
}
},
"link": {
"url": "https://github.com/flutter/codelabs/tree/master/testing_codelab"
},
"underline": true,
"weightedFontFamily": {
"fontFamily": "Arial",
"weight": 400
}
}
}
},
{
"endIndex": 32801,
"startIndex": 32800,
"textRun": {
"content": "\n",
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
}
}
}
}
],
"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": 32773
}
]
},
"documentId": "1MfCrv1w6aK7SLq9gmjJwXCJFQ-AX9NWJit2gq-v2Xx8",
"documentStyle": {
"background": {
"color": {}
},
"defaultHeaderId": "kix.v4g5fejzegg1",
"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"
}
}
},
"headers": {
"kix.v4g5fejzegg1": {
"content": [
{
"endIndex": 1,
"paragraph": {
"elements": [
{
"endIndex": 1,
"textRun": {
"content": "\n",
"textStyle": {}
}
}
],
"paragraphStyle": {
"direction": "LEFT_TO_RIGHT",
"namedStyleType": "NORMAL_TEXT",
"pageBreakBefore": false
}
}
}
],
"headerId": "kix.v4g5fejzegg1"
}
},
"inlineObjects": {
"kix.1a8yopvgl1v3": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.1a8yopvgl1v3"
},
"kix.1bbevp73nnto": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.1bbevp73nnto"
},
"kix.4bjxnpvmqdqw": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.4bjxnpvmqdqw"
},
"kix.4fzvwyc0uikm": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.4fzvwyc0uikm"
},
"kix.8fiu045gopb0": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.8fiu045gopb0"
},
"kix.b9xif596w41m": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.b9xif596w41m"
},
"kix.bq782xjqvdjv": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh6.googleusercontent.com/IZqzLpXlbWjXlmihpP5EsIAPjoea9TpbWUhUa7pY3duLx80XuMHekKTTSsOe8TUih71h3n5yPboDqi8EYV8xPLotnS2e_i4MrsYpOQhehPEjnXXmNZ6rdVSClkZ1dbxfLHq7QB5Km1-qoSR2zZ7nulodAAJ4PafKcmJSLFsoZNGAsnVoRu48SR3FkK7muW5aiQttR2wO",
"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": 562.5,
"unit": "PT"
},
"width": {
"magnitude": 340.5,
"unit": "PT"
}
}
}
},
"objectId": "kix.bq782xjqvdjv"
},
"kix.c1qm4t30t535": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.c1qm4t30t535"
},
"kix.d4vz5dd90gaz": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.d4vz5dd90gaz"
},
"kix.eq1djvxuil7r": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.eq1djvxuil7r"
},
"kix.evfxwl6jtu5p": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.evfxwl6jtu5p"
},
"kix.gg3gr5sijdnh": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh4.googleusercontent.com/uj1_cgo4YXfeAgUfLOZu1VVRXPqZYVAUiwWwxjsN0qcCjJMXOcawLzes67ynHkvD121U672KD8tMC0vK76QsVKcafhKPh-X-Ax8lo1u9PXe-g4SQDGN6i1bbjR1UZn2kr0E2BBVm6zShuwMmcxpR53TtYpFYDneYYylqieJ_SosY6-kEL2zq-lpCvCyo-D81eJf3abw",
"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": 345.59999999999997,
"unit": "PT"
},
"width": {
"magnitude": 158.4,
"unit": "PT"
}
}
}
},
"objectId": "kix.gg3gr5sijdnh"
},
"kix.gqfd0f5er86o": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.gqfd0f5er86o"
},
"kix.hppjblw9dxbi": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.hppjblw9dxbi"
},
"kix.j4cw023q65fe": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.j4cw023q65fe"
},
"kix.lnhdx8vi6eyr": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.lnhdx8vi6eyr"
},
"kix.lwerlpw3ks35": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.lwerlpw3ks35"
},
"kix.m7tljkfuu9rn": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.m7tljkfuu9rn"
},
"kix.msx029net7f": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.msx029net7f"
},
"kix.p6jnzf8drcum": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.p6jnzf8drcum"
},
"kix.r3zi00euxfm9": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.r3zi00euxfm9"
},
"kix.rs7d47iay6n6": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.rs7d47iay6n6"
},
"kix.t1po0vh8s85t": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.t1po0vh8s85t"
},
"kix.v89a14d9pxx": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.v89a14d9pxx"
},
"kix.vw1cipbmkp8e": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.vw1cipbmkp8e"
},
"kix.x2m11py6vbqc": {
"inlineObjectProperties": {
"embeddedObject": {
"embeddedObjectBorder": {
"color": {
"color": {
"rgbColor": {}
}
},
"dashStyle": "SOLID",
"propertyState": "NOT_RENDERED",
"width": {
"unit": "PT"
}
},
"imageProperties": {
"contentUri": "https://lh3.googleusercontent.com/VHYPxtckub8ExoNiEbf-Xz8DSmc2GZvtzANJHUA6UKXabCcYmKY6FlEDu_RqI_g0icg5YDOd75cRP9JSTssvRWoZCVWpMRegAk8dJRT0TEAgyIlCiZDyfl2EiwJcM8ze4PHCLcFX75cqu2KGDpwoDU3BzBdmMO203g1HTquGKAwfowWXYHMb3YVWzSGPPqOI2fd-oRg",
"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": 18.0,
"unit": "PT"
},
"width": {
"magnitude": 17.796897768974304,
"unit": "PT"
}
}
}
},
"objectId": "kix.x2m11py6vbqc"
}
},
"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.24nsib9zi81l": {
"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.4sih8svsyp": {
"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.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.5u3z80370s2t": {
"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.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.6k967ur1ah1u": {
"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": 10.5,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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.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.86coc8u6ksqk": {
"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.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.a0852rs47fk1": {
"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": 10.5,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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.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.aurhp3tf619": {
"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": 10.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.26666668,
"green": 0.4,
"red": 0.26666668
}
}
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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.b1vk7rq3mqxe": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0",
"glyphSymbol": "●",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"fontSize": {
"magnitude": 12.0,
"unit": "PT"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2901961,
"green": 0.2901961,
"red": 0.2901961
}
}
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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.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.h1gbtohxox8w": {
"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.hn7y8493y02l": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphFormat": "%0.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 54.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 72.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%1.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 90.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 108.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%2.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 126.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 144.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%3.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 162.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 180.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%4.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 198.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 216.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%5.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 234.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 252.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%6.",
"glyphType": "DECIMAL",
"indentFirstLine": {
"magnitude": 270.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 288.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "START",
"glyphFormat": "%7.",
"glyphType": "ALPHA",
"indentFirstLine": {
"magnitude": 306.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 324.0,
"unit": "PT"
},
"startNumber": 1,
"textStyle": {
"underline": false
}
},
{
"bulletAlignment": "END",
"glyphFormat": "%8.",
"glyphType": "ROMAN",
"indentFirstLine": {
"magnitude": 342.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 360.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.if1slz31cdfr": {
"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.kxmmxgmyzkom": {
"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.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.lapnsvq0oh3k": {
"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"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2901961,
"green": 0.2901961,
"red": 0.2901961
}
}
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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.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.m93cb198q22r": {
"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.ok1uo0sqganv": {
"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.oof1ot60ek97": {
"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": 10.5,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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.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.pqvo4mshpkm2": {
"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.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.qn0y5v3qa3lw": {
"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.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.qztvdbrb1co7": {
"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.rc6w55ji8nb9": {
"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.ront1oenvgqg": {
"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.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.sc6u2wmq4gty": {
"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.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.ubwwu4244ov3": {
"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.vnpt9crrt431": {
"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.y57lij9p0nfz": {
"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"
},
"foregroundColor": {
"color": {
"rgbColor": {
"blue": 0.2901961,
"green": 0.2901961,
"red": 0.2901961
}
}
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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.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.yzzhnzljrr4r": {
"listProperties": {
"nestingLevels": [
{
"bulletAlignment": "START",
"glyphType": "GLYPH_TYPE_UNSPECIFIED",
"indentFirstLine": {
"magnitude": 18.0,
"unit": "PT"
},
"indentStart": {
"magnitude": 36.0,
"unit": "PT"
},
"startNumber": 2,
"textStyle": {
"fontSize": {
"magnitude": 10.5,
"unit": "PT"
},
"underline": false,
"weightedFontFamily": {
"fontFamily": "Roboto",
"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.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.zdub7zofx4i9": {
"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.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.1f8fwhfw59th",
"keepLinesTogether": true,
"keepWithNext": true,
"namedStyleType": "HEADING_2",
"pageBreakBefore": false,
"spaceAbove": {
"magnitude": 10.0,
"unit": "PT"
}
},
"textStyle": {
"fontSize": {
"magnitude": 16.0,
"unit": "PT"
},
"weightedFontFamily": {
"fontFamily": "Trebuchet MS",
"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": "ANeT5PTkbFxWsFCCU8Qwichg1Czj-PXDC2-rr6gRE1S_qyigyBVjJ6qkx3gDNSQr2NqNgvSReJujiNOj95ZaTg",
"suggestionsViewMode": "PREVIEW_WITHOUT_SUGGESTIONS",
"title": "Flutter Testing Codelab"
} | codelabs/tooling/claat_export_images/test/data/exports/1MfCrv1w6aK7SLq9gmjJwXCJFQ-AX9NWJit2gq-v2Xx8.json/0 | {
"file_path": "codelabs/tooling/claat_export_images/test/data/exports/1MfCrv1w6aK7SLq9gmjJwXCJFQ-AX9NWJit2gq-v2Xx8.json",
"repo_id": "codelabs",
"token_count": 1402880
} | 108 |
name: WebView in FLutter script
steps:
- name: step_03
steps:
- name: Remove generated code
rmdir: step_03
- name: Create project
flutter: create webview_in_flutter --platforms=android,ios
- name: Strip DEVELOPMENT_TEAM
strip-lines-containing: DEVELOPMENT_TEAM =
path: webview_in_flutter/ios/Runner.xcodeproj/project.pbxproj
- name: Upgrade dependencies
path: webview_in_flutter
flutter: pub upgrade --major-versions
- name: Configure analysis_options.yaml
path: webview_in_flutter/analysis_options.yaml
replace-contents: |
include: ../../analysis_options.yaml
- name: Remove README
rm: webview_in_flutter/README.md
- name: Add .vscode directory
mkdir: webview_in_flutter/.vscode
- name: Add .vscode/launch.json
path: webview_in_flutter/.vscode/launch.json
replace-contents: |
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "webview_in_flutter",
"request": "launch",
"type": "dart"
}
]
}
- name: Dart fix
path: webview_in_flutter
dart: fix --apply
- name: Add webview_flutter
path: webview_in_flutter
flutter: pub add webview_flutter
- name: Patch android/app/build.gradle
path: webview_in_flutter/android/app/build.gradle
patch-u: |
--- b/webview_flutter/step_03/android/app/build.gradle
+++ a/webview_flutter/step_03/android/app/build.gradle
@@ -45,7 +48,7 @@ android {
applicationId "com.example.webview_in_flutter"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
- minSdkVersion flutter.minSdkVersion
+ minSdkVersion 20
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
- name: Build iOS
platforms: [ macos ]
path: webview_in_flutter
flutter: build ios --simulator
- name: Copy step_03
copydir:
from: webview_in_flutter
to: step_03
- name: step_04
steps:
- name: Remove generated code
rmdir: step_04
- name: Replace lib/main.dart
path: webview_in_flutter/lib/main.dart
replace-contents: |
// 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 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';
void main() {
runApp(
MaterialApp(
theme: ThemeData(useMaterial3: true),
home: const WebViewApp(),
),
);
}
class WebViewApp extends StatefulWidget {
const WebViewApp({super.key});
@override
State<WebViewApp> createState() => _WebViewAppState();
}
class _WebViewAppState extends State<WebViewApp> {
late final WebViewController controller;
@override
void initState() {
super.initState();
controller = WebViewController()
..loadRequest(
Uri.parse('https://flutter.dev'),
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Flutter WebView'),
),
body: WebViewWidget(
controller: controller,
),
);
}
}
- name: Delete test/widget_test.dart
rmdir: webview_in_flutter/test
- name: Copy step_04
copydir:
from: webview_in_flutter
to: step_04
- name: step_05
steps:
- name: Remove generated code
rmdir: step_05
- name: Make lib/src
path: webview_in_flutter
mkdir: lib/src
- name: Create lib/src/web_view_stack.dart
path: webview_in_flutter/lib/src/web_view_stack.dart
replace-contents: |
// 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 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';
class WebViewStack extends StatefulWidget {
const WebViewStack({super.key});
@override
State<WebViewStack> createState() => _WebViewStackState();
}
class _WebViewStackState extends State<WebViewStack> {
var loadingPercentage = 0;
late final WebViewController controller;
@override
void initState() {
super.initState();
controller = WebViewController()
..setNavigationDelegate(NavigationDelegate(
onPageStarted: (url) {
setState(() {
loadingPercentage = 0;
});
},
onProgress: (progress) {
setState(() {
loadingPercentage = progress;
});
},
onPageFinished: (url) {
setState(() {
loadingPercentage = 100;
});
},
))
..loadRequest(
Uri.parse('https://flutter.dev'),
);
}
@override
Widget build(BuildContext context) {
return Stack(
children: [
WebViewWidget(
controller: controller,
),
if (loadingPercentage < 100)
LinearProgressIndicator(
value: loadingPercentage / 100.0,
),
],
);
}
}
- name: Patch lib/main.dart
path: webview_in_flutter/lib/main.dart
patch-u: |
--- b/webview_flutter/step_05/lib/main.dart
+++ a/webview_flutter/step_05/lib/main.dart
@@ -3,7 +3,8 @@
// found in the LICENSE file.
import 'package:flutter/material.dart';
-import 'package:webview_flutter/webview_flutter.dart';
+
+import 'src/web_view_stack.dart';
void main() {
runApp(
@@ -22,26 +23,13 @@ class WebViewApp extends StatefulWidget {
}
class _WebViewAppState extends State<WebViewApp> {
- late final WebViewController controller;
-
- @override
- void initState() {
- super.initState();
- controller = WebViewController()
- ..loadRequest(
- Uri.parse('https://flutter.dev'),
- );
- }
-
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Flutter WebView'),
),
- body: WebViewWidget(
- controller: controller,
- ),
+ body: const WebViewStack(),
);
}
}
- name: Copy step_05
copydir:
from: webview_in_flutter
to: step_05
- name: step_06
steps:
- name: Remove step_06
rmdir: step_06
- name: Create lib/src/navigation_controls.dart
path: webview_in_flutter/lib/src/navigation_controls.dart
replace-contents: |
// 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 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';
class NavigationControls extends StatelessWidget {
const NavigationControls({required this.controller, super.key});
final WebViewController controller;
@override
Widget build(BuildContext context) {
return Row(
children: <Widget>[
IconButton(
icon: const Icon(Icons.arrow_back_ios),
onPressed: () async {
final messenger = ScaffoldMessenger.of(context);
if (await controller.canGoBack()) {
await controller.goBack();
} else {
messenger.showSnackBar(
const SnackBar(content: Text('No back history item')),
);
return;
}
},
),
IconButton(
icon: const Icon(Icons.arrow_forward_ios),
onPressed: () async {
final messenger = ScaffoldMessenger.of(context);
if (await controller.canGoForward()) {
await controller.goForward();
} else {
messenger.showSnackBar(
const SnackBar(content: Text('No forward history item')),
);
return;
}
},
),
IconButton(
icon: const Icon(Icons.replay),
onPressed: () {
controller.reload();
},
),
],
);
}
}
- name: Patch lib/main.dart
path: webview_in_flutter/lib/main.dart
patch-u: |
--- b/webview_flutter/step_06/lib/main.dart
+++ a/webview_flutter/step_06/lib/main.dart
@@ -3,7 +3,9 @@
// found in the LICENSE file.
import 'package:flutter/material.dart';
+import 'package:webview_flutter/webview_flutter.dart';
+import 'src/navigation_controls.dart';
import 'src/web_view_stack.dart';
void main() {
@@ -23,13 +25,27 @@ class WebViewApp extends StatefulWidget {
}
class _WebViewAppState extends State<WebViewApp> {
+ late final WebViewController controller;
+
+ @override
+ void initState() {
+ super.initState();
+ controller = WebViewController()
+ ..loadRequest(
+ Uri.parse('https://flutter.dev'),
+ );
+ }
+
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Flutter WebView'),
+ actions: [
+ NavigationControls(controller: controller),
+ ],
),
- body: const WebViewStack(),
+ body: WebViewStack(controller: controller),
);
}
}
- name: Patch lib/src/web_view_stack.dart
path: webview_in_flutter/lib/src/web_view_stack.dart
patch-u: |
--- b/webview_flutter/step_06/lib/src/web_view_stack.dart
+++ a/webview_flutter/step_06/lib/src/web_view_stack.dart
@@ -6,7 +6,9 @@ import 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';
class WebViewStack extends StatefulWidget {
- const WebViewStack({super.key});
+ const WebViewStack({required this.controller, super.key});
+
+ final WebViewController controller;
@override
State<WebViewStack> createState() => _WebViewStackState();
@@ -14,13 +16,12 @@ class WebViewStack extends StatefulWidget {
class _WebViewStackState extends State<WebViewStack> {
var loadingPercentage = 0;
- late final WebViewController controller;
@override
void initState() {
super.initState();
- controller = WebViewController()
- ..setNavigationDelegate(NavigationDelegate(
+ widget.controller.setNavigationDelegate(
+ NavigationDelegate(
onPageStarted: (url) {
setState(() {
loadingPercentage = 0;
@@ -36,10 +37,8 @@ class _WebViewStackState extends State<WebViewStack> {
loadingPercentage = 100;
});
},
- ))
- ..loadRequest(
- Uri.parse('https://flutter.dev'),
- );
+ ),
+ );
}
@override
@@ -47,7 +46,7 @@ class _WebViewStackState extends State<WebViewStack> {
return Stack(
children: [
WebViewWidget(
- controller: controller,
+ controller: widget.controller,
),
if (loadingPercentage < 100)
LinearProgressIndicator(
- name: Copy step_06
copydir:
from: webview_in_flutter
to: step_06
- name: step_07
steps:
- name: Remove step_07
rmdir: step_07
- name: Patch lib/src/web_view_stack.dart
path: webview_in_flutter/lib/src/web_view_stack.dart
patch-u: |
--- b/webview_flutter/step_07/lib/src/web_view_stack.dart
+++ a/webview_flutter/step_07/lib/src/web_view_stack.dart
@@ -37,6 +37,20 @@ class _WebViewStackState extends State<WebViewStack> {
loadingPercentage = 100;
});
},
+ onNavigationRequest: (navigation) {
+ final host = Uri.parse(navigation.url).host;
+ if (host.contains('youtube.com')) {
+ ScaffoldMessenger.of(context).showSnackBar(
+ SnackBar(
+ content: Text(
+ 'Blocking navigation to $host',
+ ),
+ ),
+ );
+ return NavigationDecision.prevent;
+ }
+ return NavigationDecision.navigate;
+ },
),
);
}
- name: Copy step_07
copydir:
from: webview_in_flutter
to: step_07
- name: step_08
steps:
- name: Remove step_08
rmdir: step_08
- name: Add lib/src/menu.dart
path: webview_in_flutter/lib/src/menu.dart
replace-contents: |
// 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 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';
enum _MenuOptions {
navigationDelegate,
}
class Menu extends StatelessWidget {
const Menu({required this.controller, super.key});
final WebViewController controller;
@override
Widget build(BuildContext context) {
return PopupMenuButton<_MenuOptions>(
onSelected: (value) async {
switch (value) {
case _MenuOptions.navigationDelegate:
await controller.loadRequest(Uri.parse('https://youtube.com'));
}
},
itemBuilder: (context) => [
const PopupMenuItem<_MenuOptions>(
value: _MenuOptions.navigationDelegate,
child: Text('Navigate to YouTube'),
),
],
);
}
}
- name: Patch lib/main.dart
path: webview_in_flutter/lib/main.dart
patch-u: |
--- b/webview_flutter/step_08/lib/main.dart
+++ a/webview_flutter/step_08/lib/main.dart
@@ -5,6 +5,7 @@
import 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';
+import 'src/menu.dart';
import 'src/navigation_controls.dart';
import 'src/web_view_stack.dart';
@@ -43,6 +44,7 @@ class _WebViewAppState extends State<WebViewApp> {
title: const Text('Flutter WebView'),
actions: [
NavigationControls(controller: controller),
+ Menu(controller: controller),
],
),
body: WebViewStack(controller: controller),
- name: Copy step_08
copydir:
from: webview_in_flutter
to: step_08
- name: step_09
steps:
- name: Remove step_09
rmdir: step_09
- name: Patch lib/src/menu.dart
path: webview_in_flutter/lib/src/menu.dart
patch-u: |
--- b/webview_flutter/step_09/lib/src/menu.dart
+++ a/webview_flutter/step_09/lib/src/menu.dart
@@ -7,20 +7,34 @@ import 'package:webview_flutter/webview_flutter.dart';
enum _MenuOptions {
navigationDelegate,
+ userAgent,
}
-class Menu extends StatelessWidget {
+class Menu extends StatefulWidget {
const Menu({required this.controller, super.key});
final WebViewController controller;
+ @override
+ State<Menu> createState() => _MenuState();
+}
+
+class _MenuState extends State<Menu> {
@override
Widget build(BuildContext context) {
return PopupMenuButton<_MenuOptions>(
onSelected: (value) async {
switch (value) {
case _MenuOptions.navigationDelegate:
- await controller.loadRequest(Uri.parse('https://youtube.com'));
+ 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'),
+ ));
}
},
itemBuilder: (context) => [
@@ -28,6 +42,10 @@ class Menu extends StatelessWidget {
value: _MenuOptions.navigationDelegate,
child: Text('Navigate to YouTube'),
),
+ const PopupMenuItem<_MenuOptions>(
+ value: _MenuOptions.userAgent,
+ child: Text('Show user-agent'),
+ ),
],
);
}
- name: Patch lib/src/web_view_stack.dart
path: webview_in_flutter/lib/src/web_view_stack.dart
patch-u: |
--- b/webview_flutter/step_09/lib/src/web_view_stack.dart
+++ a/webview_flutter/step_09/lib/src/web_view_stack.dart
@@ -20,39 +20,41 @@ class _WebViewStackState extends State<WebViewStack> {
@override
void initState() {
super.initState();
- widget.controller.setNavigationDelegate(
- NavigationDelegate(
- onPageStarted: (url) {
- setState(() {
- loadingPercentage = 0;
- });
- },
- onProgress: (progress) {
- setState(() {
- loadingPercentage = progress;
- });
- },
- onPageFinished: (url) {
- setState(() {
- loadingPercentage = 100;
- });
- },
- onNavigationRequest: (navigation) {
- final host = Uri.parse(navigation.url).host;
- if (host.contains('youtube.com')) {
- ScaffoldMessenger.of(context).showSnackBar(
- SnackBar(
- content: Text(
- 'Blocking navigation to $host',
+ widget.controller
+ ..setNavigationDelegate(
+ NavigationDelegate(
+ onPageStarted: (url) {
+ setState(() {
+ loadingPercentage = 0;
+ });
+ },
+ onProgress: (progress) {
+ setState(() {
+ loadingPercentage = progress;
+ });
+ },
+ onPageFinished: (url) {
+ setState(() {
+ loadingPercentage = 100;
+ });
+ },
+ onNavigationRequest: (navigation) {
+ final host = Uri.parse(navigation.url).host;
+ if (host.contains('youtube.com')) {
+ ScaffoldMessenger.of(context).showSnackBar(
+ SnackBar(
+ content: Text(
+ 'Blocking navigation to $host',
+ ),
),
- ),
- );
- return NavigationDecision.prevent;
- }
- return NavigationDecision.navigate;
- },
- ),
- );
+ );
+ return NavigationDecision.prevent;
+ }
+ return NavigationDecision.navigate;
+ },
+ ),
+ )
+ ..setJavaScriptMode(JavaScriptMode.unrestricted);
}
@override
- name: Copy step_09
copydir:
from: webview_in_flutter
to: step_09
- name: step_10
steps:
- name: Remove step_10
rmdir: step_10
- name: Patch lib/src/menu.dart
path: webview_in_flutter/lib/src/menu.dart
patch-u: |
--- b/webview_flutter/step_10/lib/src/menu.dart
+++ a/webview_flutter/step_10/lib/src/menu.dart
@@ -8,6 +8,7 @@ import 'package:webview_flutter/webview_flutter.dart';
enum _MenuOptions {
navigationDelegate,
userAgent,
+ javascriptChannel,
}
class Menu extends StatefulWidget {
@@ -35,6 +36,19 @@ class _MenuState extends State<Menu> {
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();''');
}
},
itemBuilder: (context) => [
@@ -46,6 +60,10 @@ class _MenuState extends State<Menu> {
value: _MenuOptions.userAgent,
child: Text('Show user-agent'),
),
+ const PopupMenuItem<_MenuOptions>(
+ value: _MenuOptions.javascriptChannel,
+ child: Text('Lookup IP Address'),
+ ),
],
);
}
- name: Patch lib/src/web_view_stack.dart
path: webview_in_flutter/lib/src/web_view_stack.dart
patch-u: |
--- b/webview_flutter/step_10/lib/src/web_view_stack.dart
+++ a/webview_flutter/step_10/lib/src/web_view_stack.dart
@@ -54,7 +54,14 @@ class _WebViewStackState extends State<WebViewStack> {
},
),
)
- ..setJavaScriptMode(JavaScriptMode.unrestricted);
+ ..setJavaScriptMode(JavaScriptMode.unrestricted)
+ ..addJavaScriptChannel(
+ 'SnackBar',
+ onMessageReceived: (message) {
+ ScaffoldMessenger.of(context)
+ .showSnackBar(SnackBar(content: Text(message.message)));
+ },
+ );
}
@override
- name: Copy step_10
copydir:
from: webview_in_flutter
to: step_10
- name: step_11
steps:
- name: Remove step_11
rmdir: step_11
- name: Patch lib/src/menu.dart
path: webview_in_flutter/lib/src/menu.dart
patch-u: |
--- b/webview_flutter/step_11/lib/src/menu.dart
+++ a/webview_flutter/step_11/lib/src/menu.dart
@@ -9,6 +9,11 @@ enum _MenuOptions {
navigationDelegate,
userAgent,
javascriptChannel,
+ listCookies,
+ clearCookies,
+ addCookie,
+ setCookie,
+ removeCookie,
}
class Menu extends StatefulWidget {
@@ -21,6 +26,8 @@ class Menu extends StatefulWidget {
}
class _MenuState extends State<Menu> {
+ final cookieManager = WebViewCookieManager();
+
@override
Widget build(BuildContext context) {
return PopupMenuButton<_MenuOptions>(
@@ -49,6 +56,16 @@ req.onload = function() {
}
}
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);
}
},
itemBuilder: (context) => [
@@ -64,7 +81,87 @@ req.send();''');
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'),
+ ),
],
);
}
+
+ 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.'),
+ ),
+ );
+ }
}
- name: Copy step_11
copydir:
from: webview_in_flutter
to: step_11
- name: step_12
steps:
- name: Remove step_12
rmdir: step_12
- name: Add path_provider
path: webview_in_flutter
flutter: pub add path_provider
- name: Patch pubspec.yaml
path: webview_in_flutter/pubspec.yaml
patch-u: |
--- b/webview_flutter/step_12/pubspec.yaml
+++ a/webview_flutter/step_12/pubspec.yaml
@@ -59,6 +60,9 @@ flutter:
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true
+ assets:
+ - assets/www/index.html
+ - assets/www/styles/style.css
# To add assets to your application, add an assets section, like this:
# assets:
- name: Patch lib/src/menu.dart
path: webview_in_flutter/lib/src/menu.dart
patch-u: |
--- b/webview_flutter/step_12/lib/src/menu.dart
+++ a/webview_flutter/step_12/lib/src/menu.dart
@@ -2,9 +2,30 @@
// 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,
@@ -14,6 +35,9 @@ enum _MenuOptions {
addCookie,
setCookie,
removeCookie,
+ loadFlutterAsset,
+ loadLocalFile,
+ loadHtmlString,
}
class Menu extends StatefulWidget {
@@ -66,6 +90,15 @@ req.send();''');
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) => [
@@ -101,6 +134,18 @@ req.send();''');
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'),
+ ),
],
);
}
@@ -164,4 +209,31 @@ req.send();''');
),
);
}
+
+ 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);
+ }
}
- name: Make assets
path: webview_in_flutter
mkdir: assets
- name: Make assets/www
path: webview_in_flutter/assets
mkdir: www
- name: Add assets/www/index.html
path: webview_in_flutter/assets/www/index.html
replace-contents: |
<!DOCTYPE html>
<!-- Copyright 2013 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. -->
<html lang="en">
<head>
<title>Load file or HTML string example</title>
<link rel="stylesheet" href="styles/style.css" />
</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>
- name: Make assets/www/styles
path: webview_in_flutter/assets/www
mkdir: styles
- name: Add assets/www/styles/style.css
path: webview_in_flutter/assets/www/styles/style.css
replace-contents: |
h1 {
color: blue;
}
- name: Flutter clean
path: webview_in_flutter
flutter: clean
- name: Build iOS
platforms: [ macos ]
path: webview_in_flutter
flutter: build ios --simulator
- name: Build Android
platforms: [ macos ]
path: webview_in_flutter
flutter: build apk
- name: Copy step_12
copydir:
from: webview_in_flutter
to: step_12
- name: Cleanup
rmdir: webview_in_flutter
| codelabs/webview_flutter/codelab_rebuild.yaml/0 | {
"file_path": "codelabs/webview_flutter/codelab_rebuild.yaml",
"repo_id": "codelabs",
"token_count": 21860
} | 109 |
// 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 'package:flutter/material.dart';
import 'src/web_view_stack.dart';
void main() {
runApp(
MaterialApp(
theme: ThemeData(useMaterial3: true),
home: const WebViewApp(),
),
);
}
class WebViewApp extends StatefulWidget {
const WebViewApp({super.key});
@override
State<WebViewApp> createState() => _WebViewAppState();
}
class _WebViewAppState extends State<WebViewApp> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Flutter WebView'),
),
body: const WebViewStack(),
);
}
}
| codelabs/webview_flutter/step_05/lib/main.dart/0 | {
"file_path": "codelabs/webview_flutter/step_05/lib/main.dart",
"repo_id": "codelabs",
"token_count": 276
} | 110 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/webview_flutter/step_10/android/gradle.properties/0 | {
"file_path": "codelabs/webview_flutter/step_10/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 111 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| devtools/case_study/code_size/optimized/code_size_images/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "devtools/case_study/code_size/optimized/code_size_images/macos/Runner/Configs/Release.xcconfig",
"repo_id": "devtools",
"token_count": 32
} | 112 |
This directory holds unoptimized versions of the applications in
`case_study/code_size/optimized/`.
| devtools/case_study/code_size/unoptimized/README.md/0 | {
"file_path": "devtools/case_study/code_size/unoptimized/README.md",
"repo_id": "devtools",
"token_count": 26
} | 113 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| devtools/case_study/code_size/unoptimized/code_size_images/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "devtools/case_study/code_size/unoptimized/code_size_images/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "devtools",
"token_count": 32
} | 114 |
---
redirect_to: https://flutter.dev/docs/development/tools/devtools/overview
---
| devtools/docs/index.md/0 | {
"file_path": "devtools/docs/index.md",
"repo_id": "devtools",
"token_count": 28
} | 115 |
include: ../analysis_options.yaml
analyzer:
exclude:
- build/**
- lib/generated_plugin_registrant.dart
- macos/
# Syntax highlighting test files may include or lint-violating code
# for testing so should be ignored. Uncomment this while modifying
# these files if you want to ensure code is not invalid except where
# expected.
- test/test_infra/test_data/syntax_highlighting/**
dart_code_metrics:
metrics-exclude:
- test/**
- test/test_infra/test_data/**
| devtools/packages/devtools_app/analysis_options.yaml/0 | {
"file_path": "devtools/packages/devtools_app/analysis_options.yaml",
"repo_id": "devtools",
"token_count": 175
} | 116 |
# DevTools benchmark tests
There are two types of benchmarks that we currently support: size and performance.
1. `devtools_benchmarks_test.dart` - measures DevTools frame times.
2. `web_bundle_size_test.dart` - measures DevTools release build size.
The benchmark tests are run automatically on the CI.
See the "benchmark-performance" and "benchmark-size" jobs.
## Running benchmark tests locally
> [!NOTE]
> The performance and size benchmarks cannot be run concurrently
> (e.g. by running `flutter test benchmark/`). See the [#caveats](#caveats)
> section below.
All of the commands below should be run from the `packages/devtools_app` directory.
### Performance benchmarks
To run the performance benchmark tests locally, run:
```sh
dart run benchmark/scripts/run_benchmarks.dart
```
Provide arguments to the `run_benchmarks.dart` script in order to:
* compute the average of multiple benchmark runs
* compute a delta against a prior benchmark run
* save the benchmark results to a file
* run the benchmarks in the browser
* run the benchmarks with the `dart2wasm` compiler
* run the benchmarks with the `skwasm` web renderer
Run `dart run benchmark/scripts/run_benchmarks.dart -h` to see details.
To run the test that verifies we can run benchmark tests, run:
```sh
flutter test benchmark/devtools_benchmarks_test.dart
```
### Size benchmarks
To run the size benchmark test locally, run:
```sh
flutter test benchmark/web_bundle_size_test.dart
```
### Caveats
The size benchmark must be ran by itself because it actually modifies the
`devtools_app/build` folder to create and measure the release build web bundle size.
If this test is ran while other tests are running, it can affect the measurements
that the size benchmark test takes, and it can affect the DevTools build that
the other running tests are using.
## Adding a new benchmark test or test case
The tests are defined by "automators", which live in the `benchmark/test_infra/automators`
directory. To add a new test or test case, either modify an existing automator or add
a new one for a new screen. Follow existing examples in that directory for guidance.
## Comparing two benchmark test runs
There are two ways to calculate the delta between two benchmark test runs:
1. Compare two benchmarks from file:
* In order to compare two different benchmark runs, you first need to run the
benchmark tests and save the results to a file:
```sh
dart run benchmark/scripts/run_benchmarks.dart --save-to-file=/Users/me/baseline.json
dart run benchmark/scripts/run_benchmarks.dart --save-to-file=/Users/me/test.json
```
* Then, to compare the benchmarks and calculate deltas, run:
```sh
dart run benchmark/scripts/compare_benchmarks.dart /Users/me/baseline_file.json /Users/me/test_file.json
```
2. Compare a new benchmark run with a benchmark from file:
* pass the baseline benchmark file path to the `--baseline` flag when running the
`run_benchmarks.dart` script:
```sh
dart run benchmark/scripts/run_benchmarks.dart --baseline=/Users/me/baseline_file.json``
```
| devtools/packages/devtools_app/benchmark/README.md/0 | {
"file_path": "devtools/packages/devtools_app/benchmark/README.md",
"repo_id": "devtools",
"token_count": 933
} | 117 |
// 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.
// Do not delete these arguments. They are parsed by test runner.
// test-argument:appPath="test/test_infra/fixtures/memory_app"
import 'package:devtools_test/helpers.dart';
import 'package:devtools_test/integration_test.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:integration_test/integration_test.dart';
import 'eval_utils.dart';
// To run:
// dart run integration_test/run_tests.dart --target=integration_test/test/live_connection/eval_and_browse_test.dart
void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
late TestApp testApp;
setUpAll(() {
testApp = TestApp.fromEnvironment();
expect(testApp.vmServiceUri, isNotNull);
});
tearDown(() async {
await resetHistory();
});
testWidgets('memory eval and browse', (tester) async {
await pumpAndConnectDevTools(tester, testApp);
final evalTester = EvalTester(tester);
await evalTester.prepareMemoryUI();
logStatus('test basic evaluation');
await testBasicEval(evalTester);
logStatus('test variable assignment');
await testAssignment(evalTester);
logStatus('test dump one instance to console');
await _profileOneInstance(evalTester);
logStatus('test dump all instances to console');
await _profileAllInstances(evalTester);
logStatus('test take a snapshot');
await evalTester.switchToSnapshotsAndTakeOne();
logStatus('test inbound references are listed on console instance');
await _inboundReferencesAreListed(evalTester);
});
}
Future<void> _profileOneInstance(EvalTester tester) async {
await tester.openContextMenuForClass('MyHomePage');
await tester.tapAndPump(
find.textContaining('one instance'),
duration: longPumpDuration,
);
expect(find.text('MyHomePage'), findsNWidgets(2));
}
Future<void> _profileAllInstances(EvalTester tester) async {
await tester.openContextMenuForClass('_MyHomePageState');
await tester.tapAndPump(find.textContaining('all class instances'));
await tester.tapAndPump(
find.text('Direct instances'),
duration: longPumpDuration,
);
expect(find.text('List (1 item)'), findsOneWidget);
}
Future<void> _inboundReferencesAreListed(EvalTester tester) async {
await tester.openContextMenuForClass('MyApp');
await tester.tapAndPump(find.textContaining('one instance'));
await tester.tapAndPump(find.text('Any'), duration: longPumpDuration);
Finder? next = await tester.tapAndPump(
find.textContaining('MyApp, retained size '),
next: find.text('references'),
);
next = await tester.tapAndPump(
next!,
next: find.textContaining('static ('),
);
next = await tester.tapAndPump(
next!,
description: 'text containing "static ("',
next: find.text('inbound'),
);
next = await tester.tapAndPump(
next!,
next: find.text('View'),
);
}
| devtools/packages/devtools_app/integration_test/test/live_connection/eval_and_browse_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/integration_test/test/live_connection/eval_and_browse_test.dart",
"repo_id": "devtools",
"token_count": 1002
} | 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_shared/utils.dart';
import 'package:flutter/foundation.dart';
import 'initialization.dart';
import 'src/shared/environment_parameters/environment_parameters_base.dart';
import 'src/shared/environment_parameters/environment_parameters_external.dart';
import 'src/shared/primitives/utils.dart';
/// This is the entrypoint for running DevTools externally.
///
/// WARNING: This is the external entrypoint for running DevTools.
/// Any initialization that needs to occur, for both google3 and externally,
/// should be added to [runDevTools].
void main() {
BindingBase.debugZoneErrorsAreFatal = true;
externalRunDevTools();
}
void externalRunDevTools({
bool integrationTestMode = false,
bool shouldEnableExperiments = false,
List<DevToolsJsonFile> sampleData = const [],
}) {
// Set the environment parameters global.
setGlobal(
DevToolsEnvironmentParameters,
ExternalDevToolsEnvironmentParameters(),
);
runDevTools(
integrationTestMode: integrationTestMode,
shouldEnableExperiments: shouldEnableExperiments,
sampleData: sampleData,
);
}
| devtools/packages/devtools_app/lib/main.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/main.dart",
"repo_id": "devtools",
"token_count": 357
} | 119 |
// 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:math' as math;
import 'package:devtools_app_shared/ui.dart';
import 'package:flutter/material.dart';
import 'package:pointer_interceptor/pointer_interceptor.dart';
import '../shared/common_widgets.dart';
import '../shared/primitives/utils.dart';
import '../shared/screen.dart';
class DevToolsAppBar extends StatelessWidget {
const DevToolsAppBar({
super.key,
required this.tabController,
required this.screens,
required this.actions,
});
final TabController? tabController;
final List<Screen> screens;
final List<Widget>? actions;
@override
Widget build(BuildContext context) {
final textTheme = Theme.of(context).textTheme;
Widget? flexibleSpace;
TabBar tabBar;
List<Screen> visibleScreens = screens;
bool tabsOverflow({bool includeOverflowButtonWidth = false}) {
return _scaffoldHeaderWidth(
screens: visibleScreens,
actions: actions,
textTheme: textTheme,
) +
(includeOverflowButtonWidth ? TabOverflowButton.width : 0) >=
MediaQuery.of(context).size.width;
}
var overflow = tabsOverflow();
while (overflow) {
visibleScreens = List.of(visibleScreens)..safeRemoveLast();
overflow = tabsOverflow(includeOverflowButtonWidth: true);
if (overflow && visibleScreens.isEmpty) {
break;
}
}
final overflowScreens = screens.sublist(visibleScreens.length);
// Add a leading [VerticalLineSpacer] to the actions to separate them from
// the tabs.
final actionsWithSpacer = List<Widget>.from(actions ?? [])
..insert(0, VerticalLineSpacer(height: defaultToolbarHeight));
final bool hasMultipleTabs = screens.length > 1;
if (hasMultipleTabs) {
tabBar = TabBar(
controller: tabController,
isScrollable: true,
labelPadding: EdgeInsets.zero,
tabs: [
for (var screen in visibleScreens)
Padding(
padding: const EdgeInsets.symmetric(horizontal: tabBarSpacing),
child: screen.buildTab(context),
),
// We need to include a widget in the tab bar for the overflow screens
// because the [_tabController] expects a length equal to the total
// number of screens, hidden or not.
for (var _ in overflowScreens) const SizedBox.shrink(),
],
);
final rightPadding = math.max(
0.0,
// Use [actions] here instead of [actionsWithSpacer] because we may
// have added a spacer element to [actionsWithSpacer] above, which
// should be excluded from the width calculation.
actionWidgetSize * ((actions ?? []).length) +
VerticalLineSpacer.totalWidth,
);
flexibleSpace = Align(
alignment: Alignment.centerLeft,
child: Padding(
padding: EdgeInsets.only(
top: densePadding,
right: rightPadding,
),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
tabBar,
if (overflowScreens.isNotEmpty)
Expanded(
child: Align(
alignment: Alignment.centerLeft,
child: TabOverflowButton(
screens: overflowScreens,
selectedIndex:
tabController!.index - visibleScreens.length,
onItemSelected: (index) {
final selectedTabIndex = visibleScreens.length + index;
tabController!.index = selectedTabIndex;
},
),
),
),
],
),
),
);
}
return AppBar(
// Turn off the appbar's back button.
automaticallyImplyLeading: false,
centerTitle: false,
toolbarHeight: defaultToolbarHeight,
actions: actionsWithSpacer,
flexibleSpace: flexibleSpace,
);
}
/// Returns the width of the scaffold title, tabs and default icons.
double _scaffoldHeaderWidth({
required List<Screen> screens,
required List<Widget>? actions,
required TextTheme textTheme,
}) {
final tabsWidth = screens.fold(
0.0,
(prev, screen) => prev + screen.approximateTabWidth(textTheme),
);
final actionsWidth = (actions?.length ?? 0) * actionWidgetSize;
return tabsWidth + VerticalLineSpacer.totalWidth + actionsWidth;
}
}
class TabOverflowButton extends StatelessWidget {
const TabOverflowButton({
super.key,
required this.screens,
required this.selectedIndex,
required this.onItemSelected,
});
static const width = 40.0;
final List<Screen> screens;
final int selectedIndex;
bool get overflowTabSelected => selectedIndex >= 0;
final void Function(int) onItemSelected;
@override
Widget build(BuildContext context) {
final selectedColor = Theme.of(context).colorScheme.primary;
final button = ContextMenuButton(
icon: Icons.keyboard_double_arrow_right_sharp,
iconSize: actionsIconSize,
color: overflowTabSelected ? selectedColor : null,
buttonWidth: buttonMinWidth,
menuChildren: _buildChildren(context),
);
return overflowTabSelected ? SelectedTabWrapper(child: button) : button;
}
List<Widget> _buildChildren(BuildContext context) {
final theme = Theme.of(context);
final children = <Widget>[];
for (int i = 0; i < screens.length; i++) {
final screen = screens[i];
var tab = screen.buildTab(context);
if (i == selectedIndex) {
final tabWidth = screen.approximateTabWidth(
theme.textTheme,
includeTabBarSpacing: false,
);
tab = SelectedTabWrapper(
width: tabWidth,
child: Container(
width: tabWidth,
alignment: Alignment.center,
child: tab,
),
);
}
children.add(
PointerInterceptor(
child: SizedBox(
// Match the height of the main tab bar.
height: defaultToolbarHeight,
child: MenuItemButton(
style: const ButtonStyle().copyWith(
textStyle: MaterialStateProperty.resolveWith<TextStyle>((_) {
return theme.textTheme.titleSmall!;
}),
),
onPressed: () => onItemSelected(i),
child: tab,
),
),
),
);
}
return children;
}
}
@visibleForTesting
class SelectedTabWrapper extends StatelessWidget {
SelectedTabWrapper({super.key, required this.child, double? width})
: width = width ?? buttonMinWidth;
final Widget child;
final double width;
static const _selectedIndicatorHeight = 3.0;
@override
Widget build(BuildContext context) {
final selectedColor = Theme.of(context).colorScheme.primary;
const radius = Radius.circular(_selectedIndicatorHeight);
return Stack(
children: [
child,
Positioned(
bottom: 0.0,
child: ClipRRect(
borderRadius: const BorderRadius.only(
topLeft: radius,
topRight: radius,
),
child: Container(
height: _selectedIndicatorHeight,
width: width,
color: selectedColor,
),
),
),
],
);
}
}
| devtools/packages/devtools_app/lib/src/framework/app_bar.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/framework/app_bar.dart",
"repo_id": "devtools",
"token_count": 3268
} | 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 'package:devtools_app_shared/ui.dart';
import 'package:flutter/material.dart' hide Badge;
import '../../shared/common_widgets.dart';
import '../../shared/globals.dart';
import '../../shared/primitives/utils.dart';
import '../../shared/utils.dart';
import 'common.dart';
import 'debugger_controller.dart';
import 'debugger_model.dart';
double get executableLineRadius => scaleByFontFactor(1.5);
double get breakpointRadius => scaleByFontFactor(6.0);
class Breakpoints extends StatefulWidget {
const Breakpoints({Key? key}) : super(key: key);
@override
State<Breakpoints> createState() => _BreakpointsState();
}
class _BreakpointsState extends State<Breakpoints>
with ProvidedControllerMixin<DebuggerController, Breakpoints> {
@override
void didChangeDependencies() {
super.didChangeDependencies();
initController();
}
@override
Widget build(BuildContext context) {
return MultiValueListenableBuilder(
listenables: [
breakpointManager.breakpointsWithLocation,
controller.selectedBreakpoint,
],
builder: (context, values, _) {
final breakpoints = values.first as List<BreakpointAndSourcePosition>;
final selectedBreakpoint =
values.second as BreakpointAndSourcePosition?;
return ListView.builder(
itemCount: breakpoints.length,
itemExtent: defaultListItemHeight,
itemBuilder: (_, index) {
return buildBreakpoint(
breakpoints[index],
selectedBreakpoint,
);
},
);
},
);
}
Widget buildBreakpoint(
BreakpointAndSourcePosition bp,
BreakpointAndSourcePosition? selectedBreakpoint,
) {
final theme = Theme.of(context);
final isSelected = bp.id == selectedBreakpoint?.id;
return Material(
color: isSelected ? theme.colorScheme.selectedRowBackgroundColor : null,
child: InkWell(
onTap: () async => await _onBreakpointSelected(bp),
child: Padding(
padding: const EdgeInsets.all(borderPadding),
child: Row(
children: [
Padding(
padding: const EdgeInsets.only(
left: borderPadding,
right: borderPadding * 2,
),
child: createCircleWidget(
breakpointRadius,
theme.colorScheme.primary,
),
),
Flexible(
child: RichText(
maxLines: 1,
overflow: TextOverflow.ellipsis,
text: TextSpan(
text: _descriptionFor(bp),
style: theme.regularTextStyle,
children: [
TextSpan(
text: ' (${bp.scriptUri})',
style: isSelected
? theme.selectedSubtleTextStyle
: theme.subtleTextStyle,
),
],
),
),
),
],
),
),
),
);
}
Future<void> _onBreakpointSelected(BreakpointAndSourcePosition bp) async {
await controller.selectBreakpoint(bp);
}
String _descriptionFor(BreakpointAndSourcePosition breakpoint) {
final scriptUri = breakpoint.scriptUri;
final fileName = scriptUri == null ? 'file' : scriptUri.split('/').last;
// Consider showing columns in the future if we allow multiple breakpoints
// per line.
return '$fileName:${breakpoint.line}';
}
}
class BreakpointsCountBadge extends StatelessWidget {
const BreakpointsCountBadge({super.key, required this.breakpoints});
final List<BreakpointAndSourcePosition> breakpoints;
@override
Widget build(BuildContext context) {
return Badge(nf.format(breakpoints.length));
}
}
| devtools/packages/devtools_app/lib/src/screens/debugger/breakpoints.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/debugger/breakpoints.dart",
"repo_id": "devtools",
"token_count": 1784
} | 121 |
// 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.
// TODO(https://github.com/flutter/devtools/issues/4717): migrate away from
// deprecated members.
// ignore_for_file: deprecated_member_use
import 'dart:async';
import 'package:flutter/material.dart' hide Stack;
import '../../shared/console/widgets/display_provider.dart';
import '../../shared/diagnostics/dap_object_node.dart';
import '../../shared/diagnostics/dart_object_node.dart';
import '../../shared/diagnostics/tree_builder.dart';
import '../../shared/feature_flags.dart';
import '../../shared/globals.dart';
import '../../shared/tree.dart';
class Variables extends StatelessWidget {
const Variables({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
// TODO(kenz): preserve expanded state of tree on switching frames and
// on stepping.
if (FeatureFlags.dapDebugging) {
return TreeView<DapObjectNode>(
dataRootsListenable: serviceConnection.appState.dapVariables,
dataDisplayProvider: (variable, onPressed) {
return DapDisplayProvider(node: variable, onTap: onPressed);
},
onItemExpanded: onDapItemExpanded,
);
} else {
return TreeView<DartObjectNode>(
dataRootsListenable: serviceConnection.appState.variables,
dataDisplayProvider: (variable, onPressed) => DisplayProvider(
variable: variable,
onTap: onPressed,
),
onItemSelected: onItemPressed,
);
}
}
Future<void> onDapItemExpanded(
DapObjectNode node,
) async {
if (node.isExpanded) {
for (final child in node.children) {
await child.fetchChildren();
}
}
}
Future<void> onItemPressed(
DartObjectNode v,
) async {
// On expansion, lazily build the variables tree for performance reasons.
if (v.isExpanded) {
await Future.wait(v.children.map(buildVariablesTree));
}
}
}
| devtools/packages/devtools_app/lib/src/screens/debugger/variables.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/debugger/variables.dart",
"repo_id": "devtools",
"token_count": 755
} | 122 |
// 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:ui';
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import '../../inspector_data_models.dart';
import '../ui/utils.dart';
String crossAxisAssetImageUrl(Axis direction, CrossAxisAlignment alignment) {
return 'assets/img/layout_explorer/cross_axis_alignment/'
'${direction.flexType.toLowerCase()}_${alignment.name}.png';
}
String mainAxisAssetImageUrl(Axis direction, MainAxisAlignment alignment) {
return 'assets/img/layout_explorer/main_axis_alignment/'
'${direction.flexType.toLowerCase()}_${alignment.name}.png';
}
class AnimatedFlexLayoutProperties
extends AnimatedLayoutProperties<FlexLayoutProperties>
implements FlexLayoutProperties {
AnimatedFlexLayoutProperties(
FlexLayoutProperties begin,
FlexLayoutProperties end,
Animation<double> animation,
) : super(begin, end, animation);
@override
CrossAxisAlignment? get crossAxisAlignment => end.crossAxisAlignment;
@override
MainAxisAlignment? get mainAxisAlignment => end.mainAxisAlignment;
@override
List<RenderProperties> childrenRenderProperties({
required double smallestRenderWidth,
required double largestRenderWidth,
required double smallestRenderHeight,
required double largestRenderHeight,
required double Function(Axis) maxSizeAvailable,
}) {
final beginRenderProperties = begin.childrenRenderProperties(
smallestRenderHeight: smallestRenderHeight,
smallestRenderWidth: smallestRenderWidth,
largestRenderHeight: largestRenderHeight,
largestRenderWidth: largestRenderWidth,
maxSizeAvailable: maxSizeAvailable,
);
final endRenderProperties = end.childrenRenderProperties(
smallestRenderHeight: smallestRenderHeight,
smallestRenderWidth: smallestRenderWidth,
largestRenderHeight: largestRenderHeight,
largestRenderWidth: largestRenderWidth,
maxSizeAvailable: maxSizeAvailable,
);
final result = <RenderProperties>[];
for (var i = 0; i < children.length; i++) {
final beginProps = beginRenderProperties[i];
final endProps = endRenderProperties[i];
final t = animation.value;
result.add(
RenderProperties(
axis: endProps.axis,
offset: Offset.lerp(beginProps.offset, endProps.offset, t),
size: Size.lerp(beginProps.size, endProps.size, t),
realSize: Size.lerp(beginProps.realSize, endProps.realSize, t),
// TODO(polina-c, jacob314): crnsider refactoring to get rid of `!`.
layoutProperties: AnimatedLayoutProperties(
beginProps.layoutProperties!,
endProps.layoutProperties!,
animation,
),
),
);
}
// Add in the free space from the end.
// TODO(djshuckerow): We should make free space a part of
// RenderProperties so that we can animate between those.
result.addAll(endRenderProperties.where((prop) => prop.isFreeSpace));
return result;
}
@override
double get crossAxisDimension => lerpDouble(
begin.crossAxisDimension,
end.crossAxisDimension,
animation.value,
)!;
@override
Axis get crossAxisDirection => end.crossAxisDirection;
@override
List<RenderProperties> crossAxisSpaces({
required List<RenderProperties> childrenRenderProperties,
required double Function(Axis) maxSizeAvailable,
}) {
return end.crossAxisSpaces(
childrenRenderProperties: childrenRenderProperties,
maxSizeAvailable: maxSizeAvailable,
);
}
@override
Axis get direction => end.direction;
@override
String get horizontalDirectionDescription =>
end.horizontalDirectionDescription;
@override
bool get isMainAxisHorizontal => end.isMainAxisHorizontal;
@override
bool get isMainAxisVertical => end.isMainAxisVertical;
@override
double get mainAxisDimension => lerpDouble(
begin.mainAxisDimension,
end.mainAxisDimension,
animation.value,
)!;
@override
MainAxisSize? get mainAxisSize => end.mainAxisSize;
@override
TextBaseline? get textBaseline => end.textBaseline;
@override
TextDirection get textDirection => end.textDirection;
@override
double get totalFlex =>
lerpDouble(begin.totalFlex, end.totalFlex, animation.value)!;
@override
String get type => end.type;
@override
VerticalDirection get verticalDirection => end.verticalDirection;
@override
String get verticalDirectionDescription => end.verticalDirectionDescription;
/// Returns a frozen copy of these FlexLayoutProperties that does not animate.
///
/// Useful for interrupting an animation with a transition to another [FlexLayoutProperties].
@override
FlexLayoutProperties copyWith({
Size? size,
List<LayoutProperties>? children,
BoxConstraints? constraints,
bool? isFlex,
String? description,
num? flexFactor,
FlexFit? flexFit,
Axis? direction,
MainAxisAlignment? mainAxisAlignment,
MainAxisSize? mainAxisSize,
CrossAxisAlignment? crossAxisAlignment,
TextDirection? textDirection,
VerticalDirection? verticalDirection,
TextBaseline? textBaseline,
}) {
return FlexLayoutProperties(
size: size ?? this.size,
children: children ?? this.children,
node: node,
constraints: constraints ?? this.constraints,
isFlex: isFlex ?? this.isFlex,
description: description ?? this.description,
flexFactor: flexFactor ?? this.flexFactor,
direction: direction ?? this.direction,
mainAxisAlignment: mainAxisAlignment ?? this.mainAxisAlignment,
mainAxisSize: mainAxisSize ?? this.mainAxisSize,
crossAxisAlignment: crossAxisAlignment ?? this.crossAxisAlignment,
textDirection: textDirection ?? this.textDirection,
verticalDirection: verticalDirection ?? this.verticalDirection,
textBaseline: textBaseline ?? this.textBaseline,
);
}
@override
bool get startIsTopLeft => end.startIsTopLeft;
}
/// LayoutProperties extension to be reused on LayoutProperties and AnimatedLayoutProperties
extension AxisExtension on Axis {
String get flexType {
switch (this) {
case Axis.horizontal:
return 'Row';
case Axis.vertical:
default:
return 'Column';
}
}
}
| devtools/packages/devtools_app/lib/src/screens/inspector/layout_explorer/flex/utils.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/inspector/layout_explorer/flex/utils.dart",
"repo_id": "devtools",
"token_count": 2261
} | 123 |
// 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 'dart:math' as math;
import 'package:devtools_app_shared/service.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:devtools_shared/devtools_shared.dart';
import 'package:flutter/foundation.dart';
import 'package:intl/intl.dart';
import 'package:logging/logging.dart';
import 'package:path/path.dart' as path;
import 'package:vm_service/vm_service.dart';
import '../../service/vm_service_wrapper.dart';
import '../../shared/diagnostics/diagnostics_node.dart';
import '../../shared/diagnostics/inspector_service.dart';
import '../../shared/globals.dart';
import '../../shared/primitives/byte_utils.dart';
import '../../shared/primitives/message_bus.dart';
import '../../shared/primitives/utils.dart';
import '../../shared/ui/filter.dart';
import '../../shared/ui/search.dart';
import '../inspector/inspector_tree_controller.dart';
import 'logging_screen.dart';
final _log = Logger('logging_controller');
// For performance reasons, we drop old logs in batches, so the log will grow
// to kMaxLogItemsUpperBound then truncate to kMaxLogItemsLowerBound.
const int kMaxLogItemsLowerBound = 5000;
const int kMaxLogItemsUpperBound = 5500;
final DateFormat timeFormat = DateFormat('HH:mm:ss.SSS');
bool _verboseDebugging = false;
typedef OnShowDetails = void Function({
String? text,
InspectorTreeController? tree,
});
typedef CreateLoggingTree = InspectorTreeController Function({
VoidCallback? onSelectionChange,
});
Future<String> _retrieveFullStringValue(
VmServiceWrapper? service,
IsolateRef isolateRef,
InstanceRef stringRef,
) {
final fallback = '${stringRef.valueAsString}...';
// TODO(kenz): why is service null?
return service
?.retrieveFullStringValue(
isolateRef.id!,
stringRef,
onUnavailable: (truncatedValue) => fallback,
)
.then((value) => value ?? fallback) ??
Future.value(fallback);
}
const _gcLogKind = 'gc';
const _flutterFirstFrameKind = 'Flutter.FirstFrame';
const _flutterFrameworkInitializationKind = 'Flutter.FrameworkInitialization';
const _verboseFlutterFrameworkLogKinds = [
_flutterFirstFrameKind,
_flutterFrameworkInitializationKind,
_FrameInfo.eventName,
_ImageSizesForFrame.eventName,
];
const _verboseFlutterServiceLogKinds = [
ServiceExtensionStateChangedInfo.eventName,
];
class LoggingController extends DisposableController
with
SearchControllerMixin<LogData>,
FilterControllerMixin<LogData>,
AutoDisposeControllerMixin {
LoggingController() {
addAutoDisposeListener(serviceConnection.serviceManager.connectedState, () {
if (serviceConnection.serviceManager.connectedState.value.connected) {
_handleConnectionStart(serviceConnection.serviceManager.service!);
autoDisposeStreamSubscription(
serviceConnection.serviceManager.service!.onIsolateEvent
.listen((event) {
messageBus.addEvent(
BusEvent(
'debugger',
data: event,
),
);
}),
);
}
});
if (serviceConnection.serviceManager.connectedAppInitialized) {
_handleConnectionStart(serviceConnection.serviceManager.service!);
}
_handleBusEvents();
subscribeToFilterChanges();
}
/// The toggle filters available for the Logging screen.
@override
List<ToggleFilter<LogData>> createToggleFilters() => [
if (serviceConnection.serviceManager.connectedApp?.isFlutterAppNow ??
true) ...[
ToggleFilter<LogData>(
name: 'Hide verbose Flutter framework logs (initialization, frame '
'times, image sizes)',
includeCallback: (log) => !_verboseFlutterFrameworkLogKinds
.any((kind) => kind.caseInsensitiveEquals(log.kind)),
enabledByDefault: true,
),
ToggleFilter<LogData>(
name: 'Hide verbose Flutter service logs (service extension state '
'changes)',
includeCallback: (log) => !_verboseFlutterServiceLogKinds
.any((kind) => kind.caseInsensitiveEquals(log.kind)),
enabledByDefault: true,
),
],
ToggleFilter<LogData>(
name: 'Hide garbage collection logs',
includeCallback: (log) => !log.kind.caseInsensitiveEquals(_gcLogKind),
enabledByDefault: true,
),
];
static const kindFilterId = 'logging-kind-filter';
@override
Map<String, QueryFilterArgument<LogData>> createQueryFilterArgs() => {
kindFilterId: QueryFilterArgument<LogData>(
keys: ['kind', 'k'],
dataValueProvider: (log) => log.kind,
substringMatch: true,
),
};
final StreamController<String> _logStatusController =
StreamController.broadcast();
/// A stream of events for the textual description of the log contents.
///
/// See also [statusText].
Stream<String> get onLogStatusChanged => _logStatusController.stream;
List<LogData> data = <LogData>[];
final selectedLog = ValueNotifier<LogData?>(null);
void _updateData(List<LogData> logs) {
data = logs;
filterData(activeFilter.value);
refreshSearchMatches();
_updateSelection();
_updateStatus();
}
void _updateSelection() {
final selected = selectedLog.value;
if (selected != null) {
final List<LogData> logs = filteredData.value;
if (!logs.contains(selected)) {
selectedLog.value = null;
}
}
}
ObjectGroup get objectGroup =>
serviceConnection.consoleService.objectGroup as ObjectGroup;
String get statusText {
final int totalCount = data.length;
final int showingCount = filteredData.value.length;
String label;
label = totalCount == showingCount
? nf.format(totalCount)
: 'showing ${nf.format(showingCount)} of ' '${nf.format(totalCount)}';
label = '$label ${pluralize('event', totalCount)}';
return label;
}
void _updateStatus() {
final label = statusText;
_logStatusController.add(label);
}
void clear() {
resetFilter();
_updateData([]);
serviceConnection.errorBadgeManager.clearErrors(LoggingScreen.id);
}
void _handleConnectionStart(VmServiceWrapper service) {
// Log stdout events.
final _StdoutEventHandler stdoutHandler =
_StdoutEventHandler(this, 'stdout');
autoDisposeStreamSubscription(
service.onStdoutEventWithHistorySafe.listen(stdoutHandler.handle),
);
// Log stderr events.
final _StdoutEventHandler stderrHandler =
_StdoutEventHandler(this, 'stderr', isError: true);
autoDisposeStreamSubscription(
service.onStderrEventWithHistorySafe.listen(stderrHandler.handle),
);
// Log GC events.
autoDisposeStreamSubscription(service.onGCEvent.listen(_handleGCEvent));
// Log `dart:developer` `log` events.
autoDisposeStreamSubscription(
service.onLoggingEventWithHistorySafe.listen(_handleDeveloperLogEvent),
);
// Log Flutter extension events.
autoDisposeStreamSubscription(
service.onExtensionEventWithHistorySafe.listen(_handleExtensionEvent),
);
}
void _handleExtensionEvent(Event e) {
// Events to show without a summary in the table.
const Set<String> untitledEvents = {
_flutterFirstFrameKind,
_flutterFrameworkInitializationKind,
};
if (e.extensionKind == _FrameInfo.eventName) {
final _FrameInfo frame = _FrameInfo(e.extensionData!.data);
final String frameId = '#${frame.number}';
final String frameInfoText =
'$frameId ${frame.elapsedMs.toStringAsFixed(1).padLeft(4)}ms ';
log(
LogData(
e.extensionKind!.toLowerCase(),
jsonEncode(e.extensionData!.data),
e.timestamp,
summary: frameInfoText,
),
);
} else if (e.extensionKind == _ImageSizesForFrame.eventName) {
final images = _ImageSizesForFrame.from(e.extensionData!.data);
for (final image in images) {
log(
LogData(
e.extensionKind!.toLowerCase(),
jsonEncode(image.json),
e.timestamp,
summary: image.summary,
),
);
}
} else if (e.extensionKind == NavigationInfo.eventName) {
final NavigationInfo navInfo = NavigationInfo.from(e.extensionData!.data);
log(
LogData(
e.extensionKind!.toLowerCase(),
jsonEncode(e.json),
e.timestamp,
summary: navInfo.routeDescription,
),
);
} else if (untitledEvents.contains(e.extensionKind)) {
log(
LogData(
e.extensionKind!.toLowerCase(),
jsonEncode(e.json),
e.timestamp,
summary: '',
),
);
} else if (e.extensionKind == ServiceExtensionStateChangedInfo.eventName) {
final ServiceExtensionStateChangedInfo changedInfo =
ServiceExtensionStateChangedInfo.from(e.extensionData!.data);
log(
LogData(
e.extensionKind!.toLowerCase(),
jsonEncode(e.json),
e.timestamp,
summary: '${changedInfo.extension}: ${changedInfo.value}',
),
);
} else if (e.extensionKind == 'Flutter.Error') {
// TODO(pq): add tests for error extension handling once framework changes
// are landed.
final RemoteDiagnosticsNode node = RemoteDiagnosticsNode(
e.extensionData!.data,
objectGroup,
false,
null,
);
// Workaround the fact that the error objects from the server don't have
// style error.
node.style = DiagnosticsTreeStyle.error;
if (_verboseDebugging) {
_log.info('node toStringDeep:######\n${node.toStringDeep()}\n###');
}
final RemoteDiagnosticsNode summary = _findFirstSummary(node) ?? node;
log(
LogData(
e.extensionKind!.toLowerCase(),
jsonEncode(e.extensionData!.data),
e.timestamp,
summary: summary.toDiagnosticsNode().toString(),
),
);
} else {
log(
LogData(
e.extensionKind!.toLowerCase(),
jsonEncode(e.json),
e.timestamp,
summary: e.json.toString(),
),
);
}
}
void _handleGCEvent(Event e) {
final HeapSpace newSpace = HeapSpace.parse(e.json!['new'])!;
final HeapSpace oldSpace = HeapSpace.parse(e.json!['old'])!;
final isolateRef = (e.json!['isolate'] as Map).cast<String, Object?>();
final int usedBytes = newSpace.used! + oldSpace.used!;
final int capacityBytes = newSpace.capacity! + oldSpace.capacity!;
final int time = ((newSpace.time! + oldSpace.time!) * 1000).round();
final String summary = '${isolateRef['name']} • '
'${e.json!['reason']} collection in $time ms • '
'${printBytes(usedBytes, unit: ByteUnit.mb, includeUnit: true)} used of '
'${printBytes(capacityBytes, unit: ByteUnit.mb, includeUnit: true)}';
final event = <String, Object>{
'reason': e.json!['reason'],
'new': newSpace.json,
'old': oldSpace.json,
'isolate': isolateRef,
};
final String message = jsonEncode(event);
log(LogData('gc', message, e.timestamp, summary: summary));
}
void _handleDeveloperLogEvent(Event e) {
final VmServiceWrapper? service = serviceConnection.serviceManager.service;
final logRecord = _LogRecord(e.json!['logRecord']);
String? loggerName =
_valueAsString(InstanceRef.parse(logRecord.loggerName));
if (loggerName == null || loggerName.isEmpty) {
loggerName = 'log';
}
final level = logRecord.level;
final messageRef = InstanceRef.parse(logRecord.message)!;
String? summary = _valueAsString(messageRef);
if (messageRef.valueAsStringIsTruncated == true) {
summary = '${summary!}...';
}
final error = InstanceRef.parse(logRecord.error);
final stackTrace = InstanceRef.parse(logRecord.stackTrace);
final String? details = summary;
Future<String> Function()? detailsComputer;
// If the message string was truncated by the VM, or the error object or
// stackTrace objects were non-null, we need to ask the VM for more
// information in order to render the log entry. We do this asynchronously
// on-demand using the `detailsComputer` Future.
if (messageRef.valueAsStringIsTruncated == true ||
_isNotNull(error) ||
_isNotNull(stackTrace)) {
detailsComputer = () async {
// Get the full string value of the message.
String result =
await _retrieveFullStringValue(service, e.isolate!, messageRef);
// Get information about the error object. Some users of the
// dart:developer log call may pass a data payload in the `error`
// field, encoded as a json encoded string, so handle that case.
if (_isNotNull(error)) {
if (error!.valueAsString != null) {
final String errorString =
await _retrieveFullStringValue(service, e.isolate!, error);
result += '\n\n$errorString';
} else {
// Call `toString()` on the error object and display that.
final toStringResult = await service!.invoke(
e.isolate!.id!,
error.id!,
'toString',
<String>[],
disableBreakpoints: true,
);
if (toStringResult is ErrorRef) {
final String? errorString = _valueAsString(error);
result += '\n\n$errorString';
} else if (toStringResult is InstanceRef) {
final String str = await _retrieveFullStringValue(
service,
e.isolate!,
toStringResult,
);
result += '\n\n$str';
}
}
}
// Get info about the stackTrace object.
if (_isNotNull(stackTrace)) {
result += '\n\n${_valueAsString(stackTrace)}';
}
return result;
};
}
const int severeIssue = 1000;
final bool isError = level != null && level >= severeIssue ? true : false;
log(
LogData(
loggerName,
details,
e.timestamp,
isError: isError,
summary: summary,
detailsComputer: detailsComputer,
),
);
}
void log(LogData log) {
List<LogData> currentLogs = List.of(data);
// Insert the new item and clamped the list to kMaxLogItemsLength.
currentLogs.add(log);
// Note: We need to drop rows from the start because we want to drop old
// rows but because that's expensive, we only do it periodically (eg. when
// the list is 500 rows more).
if (currentLogs.length > kMaxLogItemsUpperBound) {
int itemsToRemove = currentLogs.length - kMaxLogItemsLowerBound;
// Ensure we remove an even number of rows to keep the alternating
// background in-sync.
if (itemsToRemove % 2 == 1) {
itemsToRemove--;
}
currentLogs = currentLogs.sublist(itemsToRemove);
}
_updateData(currentLogs);
}
static RemoteDiagnosticsNode? _findFirstSummary(RemoteDiagnosticsNode node) {
if (node.level == DiagnosticLevel.summary) {
return node;
}
RemoteDiagnosticsNode? summary;
for (var property in node.inlineProperties) {
summary = _findFirstSummary(property);
if (summary != null) return summary;
}
for (RemoteDiagnosticsNode child in node.childrenNow) {
summary = _findFirstSummary(child);
if (summary != null) return summary;
}
return null;
}
void _handleBusEvents() {
// TODO(jacobr): expose the messageBus for use by vm tests.
autoDisposeStreamSubscription(
messageBus.onEvent(type: 'reload.end').listen((BusEvent event) {
log(
LogData(
'hot.reload',
event.data as String?,
DateTime.now().millisecondsSinceEpoch,
),
);
}),
);
autoDisposeStreamSubscription(
messageBus.onEvent(type: 'restart.end').listen((BusEvent event) {
log(
LogData(
'hot.restart',
event.data as String?,
DateTime.now().millisecondsSinceEpoch,
),
);
}),
);
// Listen for debugger events.
autoDisposeStreamSubscription(
messageBus
.onEvent()
.where(
(event) =>
event.type == 'debugger' || event.type.startsWith('debugger.'),
)
.listen(_handleDebuggerEvent),
);
// Listen for DevTools internal events.
autoDisposeStreamSubscription(
messageBus
.onEvent()
.where((event) => event.type.startsWith('devtools.'))
.listen(_handleDevToolsEvent),
);
}
void _handleDebuggerEvent(BusEvent event) {
final Event debuggerEvent = event.data as Event;
// Filter ServiceExtensionAdded events as they're pretty noisy.
if (debuggerEvent.kind == EventKind.kServiceExtensionAdded) {
return;
}
log(
LogData(
event.type,
jsonEncode(debuggerEvent.json),
debuggerEvent.timestamp,
summary: '${debuggerEvent.kind} ${debuggerEvent.isolate!.id}',
),
);
}
void _handleDevToolsEvent(BusEvent event) {
var details = event.data.toString();
String? summary;
if (details.contains('\n')) {
final lines = details.split('\n');
summary = lines.first;
details = lines.sublist(1).join('\n');
}
log(
LogData(
event.type,
details,
DateTime.now().millisecondsSinceEpoch,
summary: summary,
),
);
}
@override
Iterable<LogData> get currentDataToSearchThrough => filteredData.value;
@override
void filterData(Filter<LogData> filter) {
super.filterData(filter);
bool filterCallback(LogData log) {
final filteredOutByToggleFilters = filter.toggleFilters.any(
(toggleFilter) =>
toggleFilter.enabled.value && !toggleFilter.includeCallback(log),
);
if (filteredOutByToggleFilters) return false;
final queryFilter = filter.queryFilter;
if (!queryFilter.isEmpty) {
final filteredOutByQueryFilterArgument = queryFilter
.filterArguments.values
.any((argument) => !argument.matchesValue(log));
if (filteredOutByQueryFilterArgument) return false;
if (filter.queryFilter.substringExpressions.isNotEmpty) {
for (final substring in filter.queryFilter.substringExpressions) {
final matchesKind = log.kind.caseInsensitiveContains(substring);
if (matchesKind) return true;
final matchesSummary = log.summary != null &&
log.summary!.caseInsensitiveContains(substring);
if (matchesSummary) return true;
final matchesDetails = log.details != null &&
log.details!.caseInsensitiveContains(substring);
if (matchesDetails) return true;
}
return false;
}
}
return true;
}
filteredData
..clear()
..addAll(
data.where(filterCallback).toList(),
);
}
}
extension type _LogRecord(Map<String, dynamic> json) {
int? get level => json['level'];
Map<String, Object?> get loggerName => json['loggerName'];
Map<String, Object?> get message => json['message'];
Map<String, Object?> get error => json['error'];
Map<String, Object?> get stackTrace => json['stackTrace'];
}
/// Receive and log stdout / stderr events from the VM.
///
/// This class buffers the events for up to 1ms. This is in order to combine a
/// stdout message and its newline. Currently, `foo\n` is sent as two VM events;
/// we wait for up to 1ms when we get the `foo` event, to see if the next event
/// is a single newline. If so, we add the newline to the previous log message.
class _StdoutEventHandler {
_StdoutEventHandler(
this.loggingController,
this.name, {
this.isError = false,
});
final LoggingController loggingController;
final String name;
final bool isError;
LogData? buffer;
Timer? timer;
void handle(Event e) {
final String message = decodeBase64(e.bytes!);
if (buffer != null) {
timer?.cancel();
if (message == '\n') {
loggingController.log(
LogData(
buffer!.kind,
buffer!.details! + message,
buffer!.timestamp,
summary: buffer!.summary! + message,
isError: buffer!.isError,
),
);
buffer = null;
return;
}
loggingController.log(buffer!);
buffer = null;
}
const maxLength = 200;
String summary = message;
if (message.length > maxLength) {
summary = message.substring(0, maxLength);
}
final LogData data = LogData(
name,
message,
e.timestamp,
summary: summary,
isError: isError,
);
if (message == '\n') {
loggingController.log(data);
} else {
buffer = data;
timer = Timer(const Duration(milliseconds: 1), () {
loggingController.log(buffer!);
buffer = null;
});
}
}
}
bool _isNotNull(InstanceRef? serviceRef) {
return serviceRef != null && serviceRef.kind != 'Null';
}
String? _valueAsString(InstanceRef? ref) {
if (ref == null) {
return null;
}
if (ref.valueAsString == null) {
return ref.valueAsString;
}
return ref.valueAsStringIsTruncated == true
? '${ref.valueAsString}...'
: ref.valueAsString;
}
/// A log data object that includes optional summary information about whether
/// the log entry represents an error entry, the log entry kind, and more
/// detailed data for the entry.
///
/// The details can optionally be loaded lazily on first use. If this is the
/// case, this log entry will have a non-null `detailsComputer` field. After the
/// data is calculated, the log entry will be modified to contain the calculated
/// `details` data.
class LogData with SearchableDataMixin {
LogData(
this.kind,
this._details,
this.timestamp, {
this.summary,
this.isError = false,
this.detailsComputer,
this.node,
});
final String kind;
final int? timestamp;
final bool isError;
final String? summary;
final RemoteDiagnosticsNode? node;
String? _details;
Future<String> Function()? detailsComputer;
static const JsonEncoder prettyPrinter = JsonEncoder.withIndent(' ');
String? get details => _details;
bool get needsComputing => detailsComputer != null;
Future<void> compute() async {
_details = await detailsComputer!();
detailsComputer = null;
}
String? prettyPrinted() {
if (needsComputing) {
return details;
}
try {
return prettyPrinter
.convert(jsonDecode(details!))
.replaceAll(r'\n', '\n');
} catch (_) {
return details;
}
}
@override
bool matchesSearchToken(RegExp regExpSearch) {
return kind.caseInsensitiveContains(regExpSearch) ||
(summary?.caseInsensitiveContains(regExpSearch) == true) ||
(details?.caseInsensitiveContains(regExpSearch) == true);
}
@override
String toString() => 'LogData($kind, $timestamp)';
}
extension type _FrameInfo(Map<String, dynamic> _json) {
static const String eventName = 'Flutter.Frame';
int? get number => _json['number'];
num get elapsedMs => (_json['elapsed'] as num) / 1000;
}
extension type _ImageSizesForFrame(Map<String, dynamic> json) {
static const String eventName = 'Flutter.ImageSizesForFrame';
static List<_ImageSizesForFrame> from(Map<String, dynamic> data) {
// "packages/flutter_gallery_assets/assets/icons/material/2.0x/material.png": {
// "source": "packages/flutter_gallery_assets/assets/icons/material/2.0x/material.png",
// "displaySize": {
// "width": 64.0,
// "height": 63.99999999999999
// },
// "imageSize": {
// "width": 128.0,
// "height": 128.0
// },
// "displaySizeInBytes": 21845,
// "decodedSizeInBytes": 87381
// }
return data.values.map((entry_) => _ImageSizesForFrame(entry_)).toList();
}
String get source => json['source'];
_ImageSize get displaySize => _ImageSize(json['displaySize']);
_ImageSize get imageSize => _ImageSize(json['imageSize']);
int? get displaySizeInBytes => json['displaySizeInBytes'];
int? get decodedSizeInBytes => json['decodedSizeInBytes'];
String get summary {
final file = path.basename(source);
final double expansion =
math.sqrt(decodedSizeInBytes ?? 0) / math.sqrt(displaySizeInBytes ?? 1);
return 'Image $file • displayed at '
'${displaySize.width.round()}x${displaySize.height.round()}'
' • created at '
'${imageSize.width.round()}x${imageSize.height.round()}'
' • ${expansion.toStringAsFixed(1)}x';
}
}
extension type _ImageSize(Map<String, dynamic> json) {
double get width => json['width'];
double get height => json['height'];
}
class NavigationInfo {
NavigationInfo(this._route);
static const String eventName = 'Flutter.Navigation';
static NavigationInfo from(Map<String, dynamic> data) {
return NavigationInfo(data['route']);
}
final Map<String, dynamic>? _route;
String? get routeDescription => _route == null ? null : _route['description'];
}
class ServiceExtensionStateChangedInfo {
ServiceExtensionStateChangedInfo(this.extension, this.value);
static const String eventName = 'Flutter.ServiceExtensionStateChanged';
static ServiceExtensionStateChangedInfo from(Map<String, dynamic> data) {
return ServiceExtensionStateChangedInfo(data['extension'], data['value']);
}
final String? extension;
final Object value;
}
| devtools/packages/devtools_app/lib/src/screens/logging/logging_controller.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/logging/logging_controller.dart",
"repo_id": "devtools",
"token_count": 10348
} | 124 |
// 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:devtools_app_shared/utils.dart';
import 'package:devtools_shared/devtools_shared.dart';
import 'package:flutter/material.dart';
import '../../../../shared/charts/chart.dart';
import '../../../../shared/charts/chart_controller.dart';
import '../../../../shared/charts/chart_trace.dart' as trace;
import '../../../../shared/charts/chart_trace.dart' show ChartSymbol, ChartType;
import '../../../../shared/utils.dart';
import '../../framework/connected/memory_controller.dart';
import '../../shared/primitives/memory_timeline.dart';
class AndroidChartController extends ChartController {
AndroidChartController(
this._memoryController, {
List<int> sharedLabels = const <int>[],
}) : super(
name: 'Android',
sharedLabelimestamps: sharedLabels,
);
final MemoryController _memoryController;
// TODO(terry): Only load max visible data collected, when pruning of data
// charted is added.
/// Preload any existing data collected but not in the chart.
@override
void setupData() {
// Only display if traces have been created. Android memory may not
// have been toggled to be displayed - yet.
if (traces.isNotEmpty) {
final chartDataLength = timestampsLength;
final dataLength =
_memoryController.controllers.memoryTimeline.data.length;
final dataRange =
_memoryController.controllers.memoryTimeline.data.getRange(
chartDataLength,
dataLength,
);
dataRange.forEach(addSample);
}
}
/// Loads all heap samples (live data or offline).
void addSample(HeapSample sample) {
// If paused don't update the chart (data is still collected).
if (_memoryController.isPaused) return;
addTimestamp(sample.timestamp);
final timestamp = sample.timestamp;
final adb = sample.adbMemoryInfo;
final stackValue = adb.stack.toDouble();
addDataToTrace(
AndroidTraceName.stack.index,
trace.Data(timestamp, stackValue),
);
final graphicValue = adb.graphics.toDouble();
addDataToTrace(
AndroidTraceName.graphics.index,
trace.Data(
timestamp,
graphicValue,
),
);
final nativeHeapValue = adb.nativeHeap.toDouble();
addDataToTrace(
AndroidTraceName.nativeHeap.index,
trace.Data(
timestamp,
nativeHeapValue,
),
);
final javaHeapValue = adb.javaHeap.toDouble();
addDataToTrace(
AndroidTraceName.javaHeap.index,
trace.Data(timestamp, javaHeapValue),
);
final codeValue = adb.code.toDouble();
addDataToTrace(
AndroidTraceName.code.index,
trace.Data(timestamp, codeValue),
);
final otherValue = adb.other.toDouble();
addDataToTrace(
AndroidTraceName.other.index,
trace.Data(timestamp, otherValue),
);
final systemValue = adb.system.toDouble();
addDataToTrace(
AndroidTraceName.system.index,
trace.Data(timestamp, systemValue),
);
final totalValue = adb.total.toDouble();
addDataToTrace(
AndroidTraceName.total.index,
trace.Data(timestamp, totalValue),
);
}
void addDataToTrace(int traceIndex, trace.Data data) {
this.trace(traceIndex).addDatum(data);
}
}
class MemoryAndroidChart extends StatefulWidget {
const MemoryAndroidChart(this.chartController, {Key? key}) : super(key: key);
final AndroidChartController chartController;
@override
MemoryAndroidChartState createState() => MemoryAndroidChartState();
}
/// Name of each trace being charted, index order is the trace index
/// too (order of trace creation top-down order).
enum AndroidTraceName {
stack,
javaHeap,
code,
graphics,
nativeHeap,
other,
system,
total,
}
class MemoryAndroidChartState extends State<MemoryAndroidChart>
with
AutoDisposeMixin,
ProvidedControllerMixin<MemoryController, MemoryAndroidChart> {
/// Controller attached to the chart.
AndroidChartController get _chartController => widget.chartController;
MemoryTimeline get _memoryTimeline => controller.controllers.memoryTimeline;
@override
void initState() {
super.initState();
}
@override
void didChangeDependencies() {
super.didChangeDependencies();
if (!initController()) return;
cancelListeners();
setupTraces();
_chartController.setupData();
addAutoDisposeListener(_memoryTimeline.sampleAddedNotifier, () {
if (_memoryTimeline.sampleAddedNotifier.value != null) {
_processHeapSample(_memoryTimeline.sampleAddedNotifier.value!);
}
});
}
@override
Widget build(BuildContext context) {
return SizedBox(
height: defaultChartHeight,
child: Chart(_chartController),
);
}
/// TODO(terry): Colors used in charts (move to theme).
static const otherColor = Color(0xffff8800); // HoloOrangeDark;
static const nativeHeapColor = Color(0xff33b5e5); // HoloBlueLight
final graphicColor = Colors.greenAccent.shade400;
static const codeColor = Color(0xffaa66cc); // HoloPurple
static const javaColor = Colors.yellow;
static const stackColor = Colors.tealAccent;
static const systemColor = Color(0xff669900); // HoloGreenDark
final totalColor = Colors.blueGrey.shade100;
void setupTraces() {
if (_chartController.traces.isNotEmpty) {
assert(_chartController.traces.length == AndroidTraceName.values.length);
final stackIndex = AndroidTraceName.stack.index;
assert(
_chartController.trace(stackIndex).name ==
AndroidTraceName.values[stackIndex].toString(),
);
final graphicsIndex = AndroidTraceName.graphics.index;
assert(
_chartController.trace(graphicsIndex).name ==
AndroidTraceName.values[graphicsIndex].toString(),
);
final nativeHeapIndex = AndroidTraceName.nativeHeap.index;
assert(
_chartController.trace(nativeHeapIndex).name ==
AndroidTraceName.values[nativeHeapIndex].toString(),
);
final javaHeapIndex = AndroidTraceName.javaHeap.index;
assert(
_chartController.trace(javaHeapIndex).name ==
AndroidTraceName.values[javaHeapIndex].toString(),
);
final codeIndex = AndroidTraceName.code.index;
assert(
_chartController.trace(codeIndex).name ==
AndroidTraceName.values[codeIndex].toString(),
);
final otherIndex = AndroidTraceName.other.index;
assert(
_chartController.trace(otherIndex).name ==
AndroidTraceName.values[otherIndex].toString(),
);
final systemIndex = AndroidTraceName.system.index;
assert(
_chartController.trace(systemIndex).name ==
AndroidTraceName.values[systemIndex].toString(),
);
final totalIndex = AndroidTraceName.total.index;
assert(
_chartController.trace(totalIndex).name ==
AndroidTraceName.values[totalIndex].toString(),
);
return;
}
// Need to create the trace first time.
// Stack trace
final stackIndex = _chartController.createTrace(
ChartType.line,
trace.PaintCharacteristics(
color: stackColor,
symbol: ChartSymbol.disc,
diameter: 1.5,
),
stacked: true,
name: AndroidTraceName.stack.toString(),
);
assert(stackIndex == AndroidTraceName.stack.index);
assert(
_chartController.trace(stackIndex).name ==
AndroidTraceName.values[stackIndex].toString(),
);
// Java heap trace.
final javaHeapIndex = _chartController.createTrace(
ChartType.line,
trace.PaintCharacteristics(
color: javaColor,
symbol: ChartSymbol.disc,
diameter: 1.5,
),
stacked: true,
name: AndroidTraceName.javaHeap.toString(),
);
assert(javaHeapIndex == AndroidTraceName.javaHeap.index);
assert(
_chartController.trace(javaHeapIndex).name ==
AndroidTraceName.values[javaHeapIndex].toString(),
);
// Code trace
final codeIndex = _chartController.createTrace(
ChartType.line,
trace.PaintCharacteristics(
color: codeColor,
symbol: ChartSymbol.disc,
diameter: 1.5,
),
stacked: true,
name: AndroidTraceName.code.toString(),
);
assert(codeIndex == AndroidTraceName.code.index);
assert(
_chartController.trace(codeIndex).name ==
AndroidTraceName.values[codeIndex].toString(),
);
// Graphics Trace
final graphicIndex = _chartController.createTrace(
ChartType.line,
trace.PaintCharacteristics(
color: graphicColor,
symbol: ChartSymbol.disc,
diameter: 1.5,
),
stacked: true,
name: AndroidTraceName.graphics.toString(),
);
assert(graphicIndex == AndroidTraceName.graphics.index);
assert(
_chartController.trace(graphicIndex).name ==
AndroidTraceName.values[graphicIndex].toString(),
);
// Native heap trace.
final nativeHeapIndex = _chartController.createTrace(
ChartType.line,
trace.PaintCharacteristics(
color: nativeHeapColor,
symbol: ChartSymbol.disc,
diameter: 1.5,
),
stacked: true,
name: AndroidTraceName.nativeHeap.toString(),
);
assert(nativeHeapIndex == AndroidTraceName.nativeHeap.index);
assert(
_chartController.trace(nativeHeapIndex).name ==
AndroidTraceName.values[nativeHeapIndex].toString(),
);
// Other trace
final otherIndex = _chartController.createTrace(
ChartType.line,
trace.PaintCharacteristics(
color: otherColor,
symbol: ChartSymbol.disc,
diameter: 1.5,
),
stacked: true,
name: AndroidTraceName.other.toString(),
);
assert(otherIndex == AndroidTraceName.other.index);
assert(
_chartController.trace(otherIndex).name ==
AndroidTraceName.values[otherIndex].toString(),
);
// System trace
final systemIndex = _chartController.createTrace(
ChartType.line,
trace.PaintCharacteristics(
color: systemColor,
symbol: ChartSymbol.disc,
diameter: 1.5,
),
stacked: true,
name: AndroidTraceName.system.toString(),
);
assert(systemIndex == AndroidTraceName.system.index);
assert(
_chartController.trace(systemIndex).name ==
AndroidTraceName.values[systemIndex].toString(),
);
// Total trace.
final totalIndex = _chartController.createTrace(
trace.ChartType.line,
trace.PaintCharacteristics(
color: totalColor,
symbol: ChartSymbol.dashedLine,
strokeWidth: 2,
),
name: AndroidTraceName.total.toString(),
);
assert(totalIndex == AndroidTraceName.total.index);
assert(
_chartController.trace(totalIndex).name ==
AndroidTraceName.values[totalIndex].toString(),
);
assert(_chartController.traces.length == AndroidTraceName.values.length);
}
/// Loads all heap samples (live data or offline).
void _processHeapSample(HeapSample sample) {
// If paused don't update the chart (data is still collected).
if (controller.paused.value) return;
_chartController.addSample(sample);
}
}
| devtools/packages/devtools_app/lib/src/screens/memory/panes/chart/memory_android_chart.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/memory/panes/chart/memory_android_chart.dart",
"repo_id": "devtools",
"token_count": 4371
} | 125 |
// 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/widgets.dart';
import '../../../../../../shared/common_widgets.dart';
import '../../../../shared/heap/heap.dart';
import '../../controller/class_data.dart';
import 'path.dart';
import 'paths.dart';
class HeapClassDetails extends StatelessWidget {
const HeapClassDetails({
Key? key,
required this.entries,
required this.selection,
required this.isDiff,
required this.pathController,
required this.className,
}) : super(key: key);
final List<StatsByPathEntry>? entries;
final ValueNotifier<StatsByPathEntry?> selection;
final RetainingPathController pathController;
final bool isDiff;
final String? className;
@override
Widget build(BuildContext context) {
final theEntries = entries;
if (theEntries == null) {
return const CenteredMessage(
'Click a table row to see retaining paths here.',
);
}
final retainingPathsTable = RetainingPathTable(
entries: theEntries,
selection: selection,
isDiff: isDiff,
className: className!,
);
final selectedPathView = ValueListenableBuilder<StatsByPathEntry?>(
valueListenable: selection,
builder: (_, selection, __) {
if (selection == null) {
return const CenteredMessage(
'Click a table row to see the detailed path.',
);
}
return RetainingPathView(
path: selection.key,
controller: pathController,
);
},
);
return SplitPane(
axis: Axis.horizontal,
initialFractions: const [0.7, 0.3],
children: [
OutlineDecoration.onlyRight(
child: retainingPathsTable,
),
OutlineDecoration.onlyLeft(
child: selectedPathView,
),
],
);
}
}
| devtools/packages/devtools_app/lib/src/screens/memory/panes/diff/widgets/class_details/class_details.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/memory/panes/diff/widgets/class_details/class_details.dart",
"repo_id": "devtools",
"token_count": 771
} | 126 |
// 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/utils.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/widgets.dart';
import 'package:vm_service/vm_service.dart';
import '../../../../shared/globals.dart';
import '../../../../shared/memory/class_name.dart';
import '../../../../shared/primitives/utils.dart';
import '../../../../shared/table/table_data.dart';
import '../../../profiler/cpu_profile_model.dart';
import '../../../profiler/cpu_profile_transformer.dart';
// TODO(bkonyi): make compatible with ClassHeapDetailStats for serialization /
// deserialization support.
/// A representation of a class and it's allocation tracing state.
class TracedClass with PinnableListEntry {
TracedClass({
required this.cls,
}) : traceAllocations = false,
instances = 0,
name = HeapClassName.fromClassRef(cls);
TracedClass._({
required this.cls,
required this.instances,
required this.traceAllocations,
}) : name = HeapClassName.fromClassRef(cls);
TracedClass copyWith({
ClassRef? cls,
int? instances,
bool? traceAllocations,
}) {
return TracedClass._(
cls: cls ?? this.cls,
instances: instances ?? this.instances,
traceAllocations: traceAllocations ?? this.traceAllocations,
);
}
final HeapClassName name;
final ClassRef cls;
final int instances;
final bool traceAllocations;
@override
bool operator ==(Object other) {
if (other is! TracedClass) return false;
return cls == other.cls &&
instances == other.instances &&
traceAllocations == other.traceAllocations;
}
@override
int get hashCode => Object.hash(cls, instances, traceAllocations);
@override
bool get pinToTop => traceAllocations;
@override
String toString() =>
'${cls.name} instances: $instances trace: $traceAllocations';
}
/// Contains allocation tracing state for a single isolate.
///
/// `AllocationProfileTracingController` is effectively only used to provide
/// consumers the allocation tracing state for the currently selected isolate.
class TracingIsolateState {
TracingIsolateState({required this.isolate});
TracingIsolateState._empty() : isolate = IsolateRef();
final IsolateRef isolate;
// Keeps track of which classes have allocation tracing enabling.
final tracedClasses = <String, TracedClass>{};
final tracedClassesProfiles = <String, CpuProfileData>{};
final unfilteredClassList = <TracedClass>[];
/// The current class selection in the [AllocationTracingTable]
final selectedTracedClass = ValueNotifier<TracedClass?>(null);
/// The list of classes for the currently selected isolate.
ValueListenable<List<TracedClass>> get filteredClassList =>
_filteredClassList;
final _filteredClassList = ListValueNotifier<TracedClass>([]);
String _currentFilter = '';
/// The allocation profile data for the current class selection in the
/// [AllocationTracingTable].
CpuProfileData? get selectedTracedClassAllocationData {
return tracedClassesProfiles[selectedTracedClass.value?.cls.id!];
}
/// The last time, in microseconds, the table was cleared. This time is based
/// on the VM's internal monotonic clock, which is accessible through
/// `service.getVMTimelineMicros()`.
int _lastClearTimeMicros = 0;
Future<void> initialize() async {
final classList = await serviceConnection.serviceManager.service!
.getClassList(isolate.id!);
for (final cls in classList.classes!) {
tracedClasses[cls.id!] = TracedClass(cls: cls);
}
_filteredClassList.replaceAll(tracedClasses.values);
unfilteredClassList.addAll(tracedClasses.values);
}
Future<void> refresh() async {
final profileRequests = <Future<void>>[];
for (final tracedClass in filteredClassList.value) {
// If allocation tracing is enabled for this class, request an updated
// profile.
if (tracedClass.traceAllocations) {
profileRequests.add(_getAllocationProfileForClass(tracedClass));
}
}
// All profile requests need to complete before we can consider the refresh
// completed.
await Future.wait(profileRequests);
}
void updateClassFilter(String newFilter, {bool force = false}) {
if (newFilter.isEmpty && _currentFilter.isEmpty && !force) return;
final updatedFilteredClassList =
(newFilter.caseInsensitiveContains(_currentFilter) && !force
? _filteredClassList.value
: unfilteredClassList)
.where(
(e) => e.cls.name!.caseInsensitiveContains(newFilter),
)
.map((e) => tracedClasses[e.cls.id!]!)
.toList();
_filteredClassList.replaceAll(updatedFilteredClassList);
_currentFilter = newFilter;
}
/// Clears the allocation profiles for the currently traced classes.
Future<void> clear() async {
_lastClearTimeMicros =
(await serviceConnection.serviceManager.service!.getVMTimelineMicros())
.timestamp!;
// Reset the counts for traced classes.
final updatedTracedClasses = tracedClasses.map((key, value) {
return MapEntry(key, value.copyWith(instances: 0));
});
tracedClasses
..clear()
..addAll(updatedTracedClasses);
// Reset the unfiltered class list with the new `TracedClass` instances.
unfilteredClassList
..clear()
..addAll(tracedClasses.values);
updateClassFilter(_currentFilter, force: true);
// Since there's no longer any tracing data, clear the existing profiles.
tracedClassesProfiles.clear();
}
/// Enables or disables tracing of allocations of [cls].
Future<void> setAllocationTracingForClass(ClassRef cls, bool enabled) async {
final service = serviceConnection.serviceManager.service!;
final isolate =
serviceConnection.serviceManager.isolateManager.selectedIsolate.value!;
final tracedClass = tracedClasses[cls.id!]!;
// Only update if the tracing state has changed for `cls`.
if (tracedClass.traceAllocations != enabled) {
await service.setTraceClassAllocation(isolate.id!, cls.id!, enabled);
final update = tracedClass.copyWith(
traceAllocations: enabled,
);
_updateClassState(tracedClass, update);
}
}
void _updateClassState(TracedClass original, TracedClass updated) {
final cls = original.cls;
// Update the currently selected class, if it's still being traced.
if (selectedTracedClass.value?.cls.id == cls.id) {
selectedTracedClass.value = updated;
}
tracedClasses[cls.id!] = updated;
_filteredClassList.replace(original, updated);
}
Future<CpuProfileData> _getAllocationProfileForClass(
TracedClass tracedClass,
) async {
if (!tracedClass.traceAllocations) {
throw StateError(
'Attempted to request an allocation profile for a non-traced class',
);
}
final service = serviceConnection.serviceManager.service!;
final isolateId = serviceConnection
.serviceManager.isolateManager.selectedIsolate.value!.id!;
final cls = tracedClass.cls;
// Note: we need to provide `timeExtentMicros` to `getAllocationTraces`,
// otherwise the VM will respond with all samples, not just the samples
// collected after `_lastClearTimeMicros`. We'll just use the maximum
// Javascript integer value (2^53 - 1) to represent "infinity".
// Request the allocation profile for the traced class.
final trace = await service.getAllocationTraces(
isolateId,
classId: cls.id!,
timeOriginMicros: _lastClearTimeMicros,
timeExtentMicros: maxJsInt,
);
final profileData = await CpuProfileData.generateFromCpuSamples(
isolateId: isolateId,
cpuSamples: trace,
);
// Process the allocation profile into a tree. We can reuse the transformer
// from the CPU Profiler tooling since it also makes use of a `CpuSamples`
// response.
final transformer = CpuProfileTransformer();
await transformer.processData(profileData, processId: '');
// Update the traced class data with the updated profile length.
final updated = tracedClass.copyWith(
instances: profileData.cpuSamples.length,
);
tracedClasses[cls.id!] = updated;
tracedClassesProfiles[cls.id!] = profileData;
_updateClassState(tracedClass, updated);
return profileData;
}
}
class TracingPaneController extends DisposableController
with AutoDisposeControllerMixin {
/// Set to `true` if the controller has not yet finished initializing.
ValueListenable<bool> get initializing => _initializing;
final _initializing = ValueNotifier<bool>(true);
/// Set to `true` when `refresh()` has been called and allocation profiles
/// are being updated, before then being set again to `false`.
ValueListenable<bool> get refreshing => _refreshing;
final _refreshing = ValueNotifier<bool>(false);
/// The allocation tracing state for the currently selected isolate.
ValueListenable<TracingIsolateState> get stateForIsolate =>
_stateForIsolateListenable;
final _stateForIsolateListenable = ValueNotifier<TracingIsolateState>(
TracingIsolateState._empty(),
);
final _stateForIsolate = <String, TracingIsolateState>{};
/// The [TextEditingController] for the 'Class Filter' text field.
final textEditingController = TextEditingController();
bool _initialized = false;
Future<void> initialize() async {
if (_initialized) return;
_initialized = true;
_initializing.value = true;
Future<void> updateState() async {
final isolate = serviceConnection
.serviceManager.isolateManager.selectedIsolate.value!;
final isolateId = isolate.id!;
var state = _stateForIsolate[isolateId];
if (state == null) {
// TODO(bkonyi): we don't need to request this unless we've had a hot reload.
// We generally need to rebuild this data if we've had a hot reload or
// switched the currently selected isolate.
state = TracingIsolateState(isolate: isolate);
await state.initialize();
_stateForIsolate[isolateId] = state;
}
// Restore the previously applied filter for the isolate.
textEditingController.text = state._currentFilter;
_stateForIsolateListenable.value = state;
}
addAutoDisposeListener(
serviceConnection.serviceManager.isolateManager.selectedIsolate,
updateState,
);
await updateState();
await refresh();
_initializing.value = false;
}
@override
void dispose() {
textEditingController.dispose();
super.dispose();
}
/// Refreshes the allocation profiles for the current isolate's traced classes.
Future<void> refresh() async {
_refreshing.value = true;
await stateForIsolate.value.refresh();
_refreshing.value = false;
}
/// Refreshes the allocation profiles for the current isolate's traced classes.
Future<void> clear() async {
_refreshing.value = true;
await stateForIsolate.value.clear();
_refreshing.value = false;
}
/// Enables or disables tracing of allocations of [cls] in the current
/// isolate.
Future<void> setAllocationTracingForClass(ClassRef cls, bool enabled) async {
await stateForIsolate.value.setAllocationTracingForClass(cls, enabled);
}
/// Updates the class filter criteria for the current isolate's allocation
/// tracing state.
void updateClassFilter(String value) {
stateForIsolate.value.updateClassFilter(value);
}
}
| devtools/packages/devtools_app/lib/src/screens/memory/panes/tracing/tracing_pane_controller.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/memory/panes/tracing/tracing_pane_controller.dart",
"repo_id": "devtools",
"token_count": 3854
} | 127 |
// 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/utils.dart';
import 'package:flutter/foundation.dart';
import 'package:vm_service/vm_service.dart';
import '../../shared/config_specific/logger/allowed_error.dart';
import '../../shared/globals.dart';
import '../../shared/http/http_request_data.dart';
import '../../shared/http/http_service.dart' as http_service;
import '../../shared/primitives/utils.dart';
import '../../shared/ui/filter.dart';
import '../../shared/ui/search.dart';
import '../../shared/utils.dart';
import 'network_model.dart';
import 'network_screen.dart';
import 'network_service.dart';
/// Different types of Network Response which can be used to visualise response
/// on Response tab
enum NetworkResponseViewType {
auto,
text,
json;
@override
String toString() {
return switch (this) {
NetworkResponseViewType.json => 'Json',
NetworkResponseViewType.text => 'Text',
_ => 'Auto',
};
}
}
enum _NetworkTrafficType {
http,
socket,
}
class NetworkController extends DisposableController
with
SearchControllerMixin<NetworkRequest>,
FilterControllerMixin<NetworkRequest>,
AutoDisposeControllerMixin {
NetworkController() {
_networkService = NetworkService(this);
_currentNetworkRequests = CurrentNetworkRequests();
addAutoDisposeListener(
_currentNetworkRequests,
_filterAndRefreshSearchMatches,
);
subscribeToFilterChanges();
}
static const methodFilterId = 'network-method-filter';
static const statusFilterId = 'network-status-filter';
static const typeFilterId = 'network-type-filter';
@override
Map<String, QueryFilterArgument<NetworkRequest>> createQueryFilterArgs() => {
methodFilterId: QueryFilterArgument<NetworkRequest>(
keys: ['method', 'm'],
dataValueProvider: (request) => request.method,
substringMatch: false,
),
statusFilterId: QueryFilterArgument<NetworkRequest>(
keys: ['status', 's'],
dataValueProvider: (request) => request.status,
substringMatch: false,
),
typeFilterId: QueryFilterArgument<NetworkRequest>(
keys: ['type', 't'],
dataValueProvider: (request) => request.type,
substringMatch: false,
),
};
/// Notifies that new Network requests have been processed.
ValueListenable<List<NetworkRequest>> get requests => _currentNetworkRequests;
/// Notifies that current response type has been changed
ValueListenable<NetworkResponseViewType> get currentResponseViewType =>
_currentResponseViewType;
final _currentResponseViewType =
ValueNotifier<NetworkResponseViewType>(NetworkResponseViewType.auto);
/// Change current response type
set setResponseViewType(NetworkResponseViewType type) =>
_currentResponseViewType.value = type;
/// Reset drop down to initial state when current network request is changed
void resetDropDown() {
_currentResponseViewType.value = NetworkResponseViewType.auto;
}
final selectedRequest = ValueNotifier<NetworkRequest?>(null);
late CurrentNetworkRequests _currentNetworkRequests;
/// Notifies that the timeline is currently being recorded.
ValueListenable<bool> get recordingNotifier => _recordingNotifier;
final _recordingNotifier = ValueNotifier<bool>(false);
@visibleForTesting
NetworkService get networkService => _networkService;
late NetworkService _networkService;
/// The timeline timestamps are relative to when the VM started.
///
/// This value is equal to
/// `DateTime.now().microsecondsSinceEpoch - _profileStartMicros` when
/// recording is started is used to calculate the correct wall-time for
/// timeline events.
late int _timelineMicrosOffset;
/// The last time at which HTTP information was refreshed.
DateTime lastHttpDataRefreshTime = DateTime.fromMicrosecondsSinceEpoch(0);
/// The last timestamp at which Socket information was refreshed.
///
/// This timestamp is on the monotonic clock used by the timeline.
int lastSocketDataRefreshMicros = 0;
DebounceTimer? _pollingTimer;
@visibleForTesting
bool get isPolling => _pollingTimer != null;
@visibleForTesting
void processNetworkTrafficHelper(
List<SocketStatistic> sockets,
List<HttpProfileRequest>? httpRequests,
int timelineMicrosOffset, {
required CurrentNetworkRequests currentRequests,
}) {
currentRequests.updateOrAddAll(
requests: httpRequests!,
sockets: sockets,
timelineMicrosOffset: timelineMicrosOffset,
);
// If we have updated data for the selected web socket, we need to update
// the value.
final currentSelectedRequestId = selectedRequest.value?.id;
if (currentSelectedRequestId != null) {
selectedRequest.value =
currentRequests.getRequest(currentSelectedRequestId);
}
}
void processNetworkTraffic({
required List<SocketStatistic> sockets,
required List<HttpProfileRequest>? httpRequests,
}) {
// Trigger refresh.
processNetworkTrafficHelper(
sockets,
httpRequests,
_timelineMicrosOffset,
currentRequests: _currentNetworkRequests,
);
_filterAndRefreshSearchMatches();
_updateSelection();
}
void _updatePollingState(bool recording) {
if (recording) {
_pollingTimer ??= DebounceTimer.periodic(
// TODO(kenz): look into improving performance by caching more data.
// Polling less frequently helps performance.
const Duration(milliseconds: 2000),
_networkService.refreshNetworkData,
);
} else {
_pollingTimer?.cancel();
_pollingTimer = null;
}
}
Future<void> startRecording() async {
await _startRecording(
alreadyRecordingHttp:
await _recordingNetworkTraffic(type: _NetworkTrafficType.http),
alreadyRecordingSocketData:
await _recordingNetworkTraffic(type: _NetworkTrafficType.socket),
);
}
/// Enables network traffic recording on all isolates and starts polling for
/// HTTP and Socket information.
///
/// If `alreadyRecording` is true, the last refresh time will be assumed to
/// be the beginning of the process (time 0).
Future<void> _startRecording({
bool alreadyRecordingHttp = false,
bool alreadyRecordingSocketData = false,
}) async {
// Cancel existing polling timer before starting recording.
_updatePollingState(false);
_networkService.updateLastHttpDataRefreshTime(
alreadyRecordingHttp: alreadyRecordingHttp,
);
final timestamp = await _networkService.updateLastSocketDataRefreshTime(
alreadyRecordingSocketData: alreadyRecordingSocketData,
);
// Determine the offset that we'll use to calculate the approximate
// wall-time a request was made. This won't be 100% accurate, but it should
// easily be within a second.
_timelineMicrosOffset = DateTime.now().microsecondsSinceEpoch - timestamp;
// TODO(jacobr): add an intermediate manager class to track which flags are
// set. We are setting more flags than we probably need to here but setting
// fewer flags risks breaking functionality on the timeline view that
// assumes that all flags are set.
await allowedError(
serviceConnection.serviceManager.service!
.setVMTimelineFlags(['GC', 'Dart', 'Embedder']),
);
// TODO(kenz): only call these if http logging and socket profiling are not
// already enabled. Listen to service manager streams for this info.
await Future.wait([
http_service.toggleHttpRequestLogging(true),
networkService.toggleSocketProfiling(true),
]);
togglePolling(true);
}
void stopRecording() {
togglePolling(false);
}
void togglePolling(bool state) {
// Do not toggle the vm recording state - just enable or disable polling.
_updatePollingState(state);
_recordingNotifier.value = state;
}
Future<bool> _recordingNetworkTraffic({
required _NetworkTrafficType type,
}) async {
bool enabled = true;
final service = serviceConnection.serviceManager.service!;
await service.forEachIsolate(
(isolate) async {
final future = switch (type) {
_NetworkTrafficType.http =>
service.httpEnableTimelineLoggingWrapper(isolate.id!),
_NetworkTrafficType.socket =>
service.socketProfilingEnabledWrapper(isolate.id!),
};
// The above call won't complete immediately if the isolate is paused,
// so give up waiting after 500ms.
final state = await timeout(future, 500);
if (state?.enabled != true) {
enabled = false;
}
},
);
return enabled;
}
/// Clears the HTTP profile and socket profile from the vm, and resets the
/// last refresh timestamp to the current time.
Future<void> clear() async {
await _networkService.clearData();
_currentNetworkRequests.clear();
resetFilter();
_filterAndRefreshSearchMatches();
_updateSelection();
}
void _filterAndRefreshSearchMatches() {
filterData(activeFilter.value);
refreshSearchMatches();
}
void _updateSelection() {
final selected = selectedRequest.value;
if (selected != null) {
final requests = filteredData.value;
if (!requests.contains(selected)) {
selectedRequest.value = null;
}
}
}
@override
Iterable<NetworkRequest> get currentDataToSearchThrough => filteredData.value;
@override
void filterData(Filter<NetworkRequest> filter) {
super.filterData(filter);
serviceConnection.errorBadgeManager.clearErrors(NetworkScreen.id);
final queryFilter = filter.queryFilter;
if (queryFilter.isEmpty) {
_currentNetworkRequests.value.forEach(_checkForError);
filteredData
..clear()
..addAll(_currentNetworkRequests.value);
return;
}
filteredData
..clear()
..addAll(
_currentNetworkRequests.value.where((NetworkRequest r) {
final filteredOutByQueryFilterArgument = queryFilter
.filterArguments.values
.any((argument) => !argument.matchesValue(r));
if (filteredOutByQueryFilterArgument) return false;
if (queryFilter.substringExpressions.isNotEmpty) {
for (final substring in queryFilter.substringExpressions) {
bool matches(String? stringToMatch) {
if (stringToMatch?.caseInsensitiveContains(substring) == true) {
_checkForError(r);
return true;
}
return false;
}
if (matches(r.uri)) return true;
if (matches(r.method)) return true;
if (matches(r.status)) return true;
if (matches(r.type)) return true;
}
return false;
}
_checkForError(r);
return true;
}).toList(),
);
}
void _checkForError(NetworkRequest r) {
if (r.didFail) {
serviceConnection.errorBadgeManager.incrementBadgeCount(NetworkScreen.id);
}
}
}
/// Class for managing the set of all current websocket requests, and
/// http profile requests.
class CurrentNetworkRequests extends ValueNotifier<List<NetworkRequest>> {
CurrentNetworkRequests() : super([]);
final _requestsById = <String, NetworkRequest>{};
NetworkRequest? getRequest(String id) => _requestsById[id];
/// Update or add all [requests] and [sockets] to the current requests.
///
/// If the entry already exists then it will be modified in place, otherwise
/// a new [HttpProfileRequest] will be added to the end of the requests lists.
///
/// [notifyListeners] will only be called once all [requests] and [sockets]
/// have be updated or added.
void updateOrAddAll({
required List<HttpProfileRequest> requests,
required List<SocketStatistic> sockets,
required int timelineMicrosOffset,
}) {
_updateOrAddRequests(requests);
_updateWebSocketRequests(sockets, timelineMicrosOffset);
notifyListeners();
}
/// Update or add the [request] to the [requests] depending on whether or not
/// its [request.id] already exists in the list.
///
void _updateOrAddRequests(List<HttpProfileRequest> requests) {
for (int i = 0; i < requests.length; i++) {
final request = requests[i];
_updateOrAddRequest(request);
}
}
void _updateOrAddRequest(HttpProfileRequest request) {
final wrapped = DartIOHttpRequestData(
request,
requestFullDataFromVmService: false,
);
if (!_requestsById.containsKey(request.id)) {
_requestsById[wrapped.id] = wrapped;
value.add(wrapped);
} else {
// If we override an entry that is not a DartIOHttpRequestData then that means
// the ids of the requestMapping entries may collide with other types
// of requests.
assert(_requestsById[request.id] is DartIOHttpRequestData);
(_requestsById[request.id] as DartIOHttpRequestData).merge(wrapped);
}
}
void _updateWebSocketRequests(
List<SocketStatistic> sockets,
int timelineMicrosOffset,
) {
for (final socket in sockets) {
final webSocket = WebSocket(socket, timelineMicrosOffset);
if (_requestsById.containsKey(webSocket.id)) {
final existingRequest = _requestsById[webSocket.id];
if (existingRequest is WebSocket) {
existingRequest.update(webSocket);
} else {
// If we override an entry that is not a Websocket then that means
// the ids of the requestMapping entries may collide with other types
// of requests.
assert(existingRequest is WebSocket);
}
} else {
value.add(webSocket);
// The new [sockets] may contain web sockets with the same ids as ones we
// already have, so we remove the current web sockets and replace them with
// updated data.
_requestsById[webSocket.id] = webSocket;
}
}
}
void clear() {
_requestsById.clear();
value = [];
notifyListeners();
}
}
| devtools/packages/devtools_app/lib/src/screens/network/network_controller.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/network/network_controller.dart",
"repo_id": "devtools",
"token_count": 4950
} | 128 |
// Copyright 2021 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 '../../../../service/service_extension_widgets.dart';
import '../../../../service/service_extensions.dart' as extensions;
import '../../../../shared/common_widgets.dart';
import '../../../../shared/feature_flags.dart';
import '../../../../shared/globals.dart';
import '../controls/enhance_tracing/enhance_tracing_controller.dart';
import '../rebuild_stats/rebuild_stats.dart';
import '../rebuild_stats/rebuild_stats_model.dart';
import 'frame_analysis_model.dart';
import 'frame_hints.dart';
import 'frame_time_visualizer.dart';
class FlutterFrameAnalysisView extends StatelessWidget {
const FlutterFrameAnalysisView({
Key? key,
required this.frameAnalysis,
required this.enhanceTracingController,
required this.rebuildCountModel,
}) : super(key: key);
final FrameAnalysis? frameAnalysis;
final EnhanceTracingController enhanceTracingController;
final RebuildCountModel rebuildCountModel;
@override
Widget build(BuildContext context) {
final frameAnalysis = this.frameAnalysis;
if (frameAnalysis == null) {
return const CenteredMessage(
'No analysis data available for this frame. This means that the '
'timeline events\nfor this frame occurred too long ago and DevTools '
'could not access them.\n\nTo avoid this, open the DevTools Performance '
'page earlier.',
);
}
final rebuilds = rebuildCountModel.rebuildsForFrame(frameAnalysis.frame.id);
final theme = Theme.of(context);
return Padding(
padding: const EdgeInsets.all(defaultSpacing),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
RichText(
text: TextSpan(
children: [
TextSpan(
text: 'Flutter frame: ',
style: theme.regularTextStyle,
),
TextSpan(
text: '${frameAnalysis.frame.id}',
style: theme.fixedFontStyle
.copyWith(color: theme.colorScheme.primary),
),
],
),
),
const PaddedDivider(
padding: EdgeInsets.only(
bottom: denseSpacing,
),
),
// TODO(jacobr): we might have so many frame hints that this content
// needs to scroll. Supporting that would be hard as the RebuildTable
// also needs to scroll and the devtools table functionality does not
// support the shrinkWrap property and has features that would make
//it difficult to handle robustly.
FrameHints(
frameAnalysis: frameAnalysis,
enhanceTracingController: enhanceTracingController,
),
const PaddedDivider(
padding: EdgeInsets.only(
top: denseSpacing,
bottom: denseSpacing,
),
),
FrameTimeVisualizer(frameAnalysis: frameAnalysis),
const PaddedDivider(
padding: EdgeInsets.only(
top: denseSpacing,
bottom: denseSpacing,
),
),
if (FeatureFlags.widgetRebuildstats) ...[
if (rebuilds == null || rebuilds.isEmpty)
ValueListenableBuilder<bool>(
valueListenable: serviceConnection
.serviceManager.serviceExtensionManager
.hasServiceExtension(
extensions.trackRebuildWidgets.extension,
),
builder: (context, hasExtension, _) {
if (hasExtension) {
return Row(
children: [
const Text(
'To see widget rebuilds for Flutter frames, enable',
),
Flexible(
child: ServiceExtensionCheckbox(
serviceExtension: extensions.trackRebuildWidgets,
showDescription: false,
),
),
],
);
}
return const SizedBox();
},
),
if (rebuilds == null)
const Text(
'Rebuild information not available for this frame.',
)
else if (rebuilds.isEmpty)
const Text(
'No widget rebuilds occurred for widgets that were directly created in your project.',
)
else
Expanded(
child: RebuildTable(
metricNames: const ['Rebuild Count'],
metrics: combineStats([rebuilds]),
),
),
],
],
),
);
}
}
| devtools/packages/devtools_app/lib/src/screens/performance/panes/frame_analysis/frame_analysis.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/performance/panes/frame_analysis/frame_analysis.dart",
"repo_id": "devtools",
"token_count": 2445
} | 129 |
// 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:fixnum/fixnum.dart';
import 'package:flutter/foundation.dart';
import 'package:vm_service_protos/vm_service_protos.dart';
import '../../../../performance_model.dart';
/// A change notifer that contains a Perfetto [Trace] object.
///
/// We use this custom change notifier instead of a raw ValueNotifier<Trace?> so
/// that listeners are notified when the inner value of [_trace] is updated. For
/// example, on method calls like [Trace.mergeFromBuffer], the inner value of
/// the [Trace] object is changed by merging new data into the existing object.
/// However, the object identity does not change for operations like this, which
/// means that set calls to ValueNotifier.value would not notify listeners.
///
/// Using [PerfettoTrace] instead ensures that listeners are updated for calls
/// to set the value of [trace], even when the existing [trace] and the new
/// [value] satisfy Object equality.
class PerfettoTrace extends ChangeNotifier {
PerfettoTrace(Trace? trace) : _trace = trace;
Trace? get trace => _trace;
Trace? _trace;
/// Sets the value of [_trace] and notifies listeners.
///
/// Listeners will be notified event if [_trace] and [value] satisfy Object
/// equality. This is intentional, since the data contained in the [Trace]
/// object may be different.
set trace(Trace? value) {
_trace = value;
notifyListeners();
}
}
/// A data class to represent a [TrackDescriptor] event received a perfetto
/// [Trace].
class PerfettoTrackDescriptorEvent extends _PerfettoTracePacket {
PerfettoTrackDescriptorEvent(this.trackDescriptor) : super();
final TrackDescriptor trackDescriptor;
String get name => trackDescriptor.name.isNotEmpty
? trackDescriptor.name
: trackDescriptor.thread.threadName;
Int64 get id => trackDescriptor.uuid;
@override
bool operator ==(Object other) {
return other is PerfettoTrackDescriptorEvent &&
other.name == name &&
other.id == id;
}
@override
int get hashCode => Object.hash(name, id);
}
/// A data class to represent a [TrackEvent] event received a perfetto [Trace].
class PerfettoTrackEvent extends _PerfettoTracePacket
implements Comparable<PerfettoTrackEvent> {
PerfettoTrackEvent._(this.event, this.timestampMicros) : super();
factory PerfettoTrackEvent.fromPacket(TracePacket tracePacket) {
assert(tracePacket.hasTrackEvent());
// [tracePacket.timestamp] is the timestamp value in nanoseconds, so we
// divide by 1000 to get the value in microseconds. Even though
// [trace.timestamp] is an [Int64], it is still safe to call `toInt()`
// here because 2^52 (max JavaScript integer) nanoseconds would be
// around 100 days, so it is improbable for protos sent by the VM
// Service to contain values larger than 2^52 nanoseconds.
final timestampMicros = tracePacket.timestamp.toInt() ~/ 1000;
return PerfettoTrackEvent._(tracePacket.trackEvent, timestampMicros);
}
static const devtoolsTagArg = 'devtoolsTag';
static const frameNumberArg = 'frame_number';
static const shadersArg = 'shaders';
/// The raw [TrackEvent] data from a Perfetto trace.
final TrackEvent event;
/// The timestamp in microseconds of the [TracePacket] that this event was
/// received in.
final int timestampMicros;
String get name => event.name;
late final Map<String, Object?> args = Map<String, Object?>.fromEntries(
<MapEntry<String, Object?>?>[
...event.debugAnnotations.map((a) {
final hasStringValue = a.hasStringValue();
if (hasStringValue || a.hasLegacyJsonValue()) {
return MapEntry(
a.name,
hasStringValue ? a.stringValue : a.legacyJsonValue,
);
}
return null;
}),
].whereNotNull(),
);
List<String> get categories => event.categories;
/// The id of the Perfetto track that this event is included in.
Int64 get trackId => event.trackUuid;
/// Describes the type of this track event as defined by the Perfetto tracing
/// API (slice begin, slice end, or instant).
PerfettoEventType? get type => PerfettoEventType.from(event.type);
/// The inferred [TimelineEventType] for this track event, as defined by
/// values that are relevant for Flutter timeline events in DevTools
/// (ui, raster, or other).
///
/// For non-Flutter apps, this will always be inferred as
/// [TimelineEventType.other].
TimelineEventType? timelineEventType;
/// Returns the flutter frame number for this track event, or null if it does
/// not exist.
int? get flutterFrameNumber {
final frameNumber = args[frameNumberArg] as String?;
if (frameNumber == null) return null;
return int.tryParse(frameNumber);
}
/// Whether this track event is contains the flutter frame identifier for the
/// UI track in its arguments.
bool get isUiFrameIdentifier =>
flutterFrameNumber != null && name == FlutterTimelineEvent.uiEventName;
/// Whether this track event contains the flutter frame identifier for the
/// Raster track in its arguments.
bool get isRasterFrameIdentifier =>
flutterFrameNumber != null &&
name == FlutterTimelineEvent.rasterEventName;
// Whether this track event is related to Shader compilation.
bool get isShaderEvent => args[devtoolsTagArg] == shadersArg;
@override
int compareTo(PerfettoTrackEvent other) {
// Order events based on their timestamps. If the events share a timestamp,
// order them in the order we received them.
final compare = timestampMicros.compareTo(other.timestampMicros);
return compare != 0 ? compare : _creationId.compareTo(other._creationId);
}
@override
String toString() =>
'[name: $name, ts: $timestampMicros, trackId: $trackId, type: $type]';
}
/// A shared subclass for events received in a Perfetto [Trace].
///
/// This class manages creating a [_creationId] for each event, which will be
/// used to break a tie in sorting algorithms.
abstract class _PerfettoTracePacket {
_PerfettoTracePacket() : _creationId = _tracePacketCreationId++;
/// Creation id counter that will be incremented for each call to the
/// [_PerfettoTracePacket] constructor.
static int _tracePacketCreationId = 0;
/// Creation id for a single [_PerfettoTracePacket] object.
final int _creationId;
}
enum PerfettoEventType {
sliceBegin('TYPE_SLICE_BEGIN'),
sliceEnd('TYPE_SLICE_END'),
instant('TYPE_INSTANT');
const PerfettoEventType(this._protoName);
static PerfettoEventType? from(TrackEvent_Type trackEventType) {
return PerfettoEventType.values.firstWhereOrNull(
(element) => element._protoName == trackEventType.name,
);
}
final String _protoName;
}
| devtools/packages/devtools_app/lib/src/screens/performance/panes/timeline_events/perfetto/tracing/model.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/performance/panes/timeline_events/perfetto/tracing/model.dart",
"repo_id": "devtools",
"token_count": 2168
} | 130 |
// 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';
import '../../../shared/primitives/utils.dart';
import '../../../shared/table/table.dart';
import '../../../shared/table/table_data.dart';
import '../cpu_profile_model.dart';
import 'cpu_profile_columns.dart';
/// A table of the bottom up tree for a CPU profile.
class CpuBottomUpTable extends StatelessWidget {
const CpuBottomUpTable({
required this.bottomUpRoots,
super.key,
});
static final methodColumn = MethodAndSourceColumn();
static final selfTimeColumn = SelfTimeColumn(
titleTooltip: selfTimeTooltip,
dataTooltipProvider: (stackFrame, context) =>
_bottomUpTimeTooltipBuilder(_TimeType.self, stackFrame, context),
);
static final totalTimeColumn = TotalTimeColumn(
titleTooltip: totalTimeTooltip,
dataTooltipProvider: (stackFrame, context) =>
_bottomUpTimeTooltipBuilder(_TimeType.total, stackFrame, context),
);
static final columns = List<ColumnData<CpuStackFrame>>.unmodifiable([
totalTimeColumn,
selfTimeColumn,
methodColumn,
]);
static const totalTimeTooltip = '''
For top-level methods in the bottom-up tree (stack frames that were at the top of at
least one CPU sample), this is the time the method spent executing its own code,
as well as the code for any methods that it called.
For children methods in the bottom-up tree (the callers), this is the total time of
the top-level method (the callee) when called through the child method (the caller).''';
static const selfTimeTooltip = '''
For top-level methods in the bottom-up tree (stack frames that were at the top of at
least one CPU sample), this is the time the method spent executing only its own code.
For children methods in the bottom-up tree (the callers), this is the self time of
the top-level method (the callee) when called through the child method (the caller).''';
final List<CpuStackFrame> bottomUpRoots;
static InlineSpan? _bottomUpTimeTooltipBuilder(
_TimeType type,
CpuStackFrame stackFrame,
BuildContext context,
) {
final fixedStyle = Theme.of(context).tooltipFixedFontStyle;
if (stackFrame.isRoot) {
switch (type) {
case _TimeType.total:
return TextSpan(
children: [
const TextSpan(text: 'Time that '),
TextSpan(
text: '[${stackFrame.name}]',
style: fixedStyle,
),
const TextSpan(
text: ' spent executing its own code,\nas well as the code for'
' any methods that it called.',
),
],
);
case _TimeType.self:
return TextSpan(
children: [
const TextSpan(text: 'Time that '),
TextSpan(
text: '[${stackFrame.name}]',
style: fixedStyle,
),
const TextSpan(text: ' spent executing its own code.'),
],
);
}
}
return TextSpan(
children: [
TextSpan(text: '$type time for root '),
TextSpan(
text: '[${stackFrame.root.name}]',
style: fixedStyle,
),
const TextSpan(text: '\nwhen called through '),
TextSpan(
text: '[${stackFrame.name}]',
style: fixedStyle,
),
],
);
}
@override
Widget build(BuildContext context) {
return TreeTable<CpuStackFrame>(
keyFactory: (frame) => PageStorageKey<String>(frame.id),
displayTreeGuidelines: true,
dataRoots: bottomUpRoots,
dataKey: 'cpu-bottom-up',
columns: columns,
treeColumn: methodColumn,
defaultSortColumn: selfTimeColumn,
defaultSortDirection: SortDirection.descending,
);
}
}
enum _TimeType {
self,
total;
@override
String toString() {
switch (this) {
case self:
return 'Self';
case total:
return 'Total';
}
}
}
| devtools/packages/devtools_app/lib/src/screens/profiler/panes/bottom_up.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/profiler/panes/bottom_up.dart",
"repo_id": "devtools",
"token_count": 1651
} | 131 |
// 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 'instance_details.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 _$PathToPropertyTearOff {
const _$PathToPropertyTearOff();
ListIndexPath listIndex(int index) {
return ListIndexPath(
index,
);
}
MapKeyPath mapKey({required String? ref}) {
return MapKeyPath(
ref: ref,
);
}
PropertyPath objectProperty(
{required String name,
required String ownerUri,
required String ownerName}) {
return PropertyPath(
name: name,
ownerUri: ownerUri,
ownerName: ownerName,
);
}
}
/// @nodoc
const $PathToProperty = _$PathToPropertyTearOff();
/// @nodoc
mixin _$PathToProperty {
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(int index) listIndex,
required TResult Function(String? ref) mapKey,
required TResult Function(String name, String ownerUri, String ownerName)
objectProperty,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(int index)? listIndex,
TResult Function(String? ref)? mapKey,
TResult Function(String name, String ownerUri, String ownerName)?
objectProperty,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(int index)? listIndex,
TResult Function(String? ref)? mapKey,
TResult Function(String name, String ownerUri, String ownerName)?
objectProperty,
required TResult orElse(),
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(ListIndexPath value) listIndex,
required TResult Function(MapKeyPath value) mapKey,
required TResult Function(PropertyPath value) objectProperty,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(ListIndexPath value)? listIndex,
TResult Function(MapKeyPath value)? mapKey,
TResult Function(PropertyPath value)? objectProperty,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(ListIndexPath value)? listIndex,
TResult Function(MapKeyPath value)? mapKey,
TResult Function(PropertyPath value)? objectProperty,
required TResult orElse(),
}) =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $PathToPropertyCopyWith<$Res> {
factory $PathToPropertyCopyWith(
PathToProperty value, $Res Function(PathToProperty) then) =
_$PathToPropertyCopyWithImpl<$Res>;
}
/// @nodoc
class _$PathToPropertyCopyWithImpl<$Res>
implements $PathToPropertyCopyWith<$Res> {
_$PathToPropertyCopyWithImpl(this._value, this._then);
final PathToProperty _value;
// ignore: unused_field
final $Res Function(PathToProperty) _then;
}
/// @nodoc
abstract class $ListIndexPathCopyWith<$Res> {
factory $ListIndexPathCopyWith(
ListIndexPath value, $Res Function(ListIndexPath) then) =
_$ListIndexPathCopyWithImpl<$Res>;
$Res call({int index});
}
/// @nodoc
class _$ListIndexPathCopyWithImpl<$Res>
extends _$PathToPropertyCopyWithImpl<$Res>
implements $ListIndexPathCopyWith<$Res> {
_$ListIndexPathCopyWithImpl(
ListIndexPath _value, $Res Function(ListIndexPath) _then)
: super(_value, (v) => _then(v as ListIndexPath));
@override
ListIndexPath get _value => super._value as ListIndexPath;
@override
$Res call({
Object? index = freezed,
}) {
return _then(ListIndexPath(
index == freezed
? _value.index
: index // ignore: cast_nullable_to_non_nullable
as int,
));
}
}
/// @nodoc
class _$ListIndexPath with DiagnosticableTreeMixin implements ListIndexPath {
const _$ListIndexPath(this.index);
@override
final int index;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'PathToProperty.listIndex(index: $index)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'PathToProperty.listIndex'))
..add(DiagnosticsProperty('index', index));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is ListIndexPath &&
const DeepCollectionEquality().equals(other.index, index));
}
@override
int get hashCode =>
Object.hash(runtimeType, const DeepCollectionEquality().hash(index));
@JsonKey(ignore: true)
@override
$ListIndexPathCopyWith<ListIndexPath> get copyWith =>
_$ListIndexPathCopyWithImpl<ListIndexPath>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(int index) listIndex,
required TResult Function(String? ref) mapKey,
required TResult Function(String name, String ownerUri, String ownerName)
objectProperty,
}) {
return listIndex(index);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(int index)? listIndex,
TResult Function(String? ref)? mapKey,
TResult Function(String name, String ownerUri, String ownerName)?
objectProperty,
}) {
return listIndex?.call(index);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(int index)? listIndex,
TResult Function(String? ref)? mapKey,
TResult Function(String name, String ownerUri, String ownerName)?
objectProperty,
required TResult orElse(),
}) {
if (listIndex != null) {
return listIndex(index);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(ListIndexPath value) listIndex,
required TResult Function(MapKeyPath value) mapKey,
required TResult Function(PropertyPath value) objectProperty,
}) {
return listIndex(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(ListIndexPath value)? listIndex,
TResult Function(MapKeyPath value)? mapKey,
TResult Function(PropertyPath value)? objectProperty,
}) {
return listIndex?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(ListIndexPath value)? listIndex,
TResult Function(MapKeyPath value)? mapKey,
TResult Function(PropertyPath value)? objectProperty,
required TResult orElse(),
}) {
if (listIndex != null) {
return listIndex(this);
}
return orElse();
}
}
abstract class ListIndexPath implements PathToProperty {
const factory ListIndexPath(int index) = _$ListIndexPath;
int get index;
@JsonKey(ignore: true)
$ListIndexPathCopyWith<ListIndexPath> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $MapKeyPathCopyWith<$Res> {
factory $MapKeyPathCopyWith(
MapKeyPath value, $Res Function(MapKeyPath) then) =
_$MapKeyPathCopyWithImpl<$Res>;
$Res call({String? ref});
}
/// @nodoc
class _$MapKeyPathCopyWithImpl<$Res> extends _$PathToPropertyCopyWithImpl<$Res>
implements $MapKeyPathCopyWith<$Res> {
_$MapKeyPathCopyWithImpl(MapKeyPath _value, $Res Function(MapKeyPath) _then)
: super(_value, (v) => _then(v as MapKeyPath));
@override
MapKeyPath get _value => super._value as MapKeyPath;
@override
$Res call({
Object? ref = freezed,
}) {
return _then(MapKeyPath(
ref: ref == freezed
? _value.ref
: ref // ignore: cast_nullable_to_non_nullable
as String?,
));
}
}
/// @nodoc
class _$MapKeyPath with DiagnosticableTreeMixin implements MapKeyPath {
const _$MapKeyPath({required this.ref});
@override
final String? ref;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'PathToProperty.mapKey(ref: $ref)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'PathToProperty.mapKey'))
..add(DiagnosticsProperty('ref', ref));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is MapKeyPath &&
const DeepCollectionEquality().equals(other.ref, ref));
}
@override
int get hashCode =>
Object.hash(runtimeType, const DeepCollectionEquality().hash(ref));
@JsonKey(ignore: true)
@override
$MapKeyPathCopyWith<MapKeyPath> get copyWith =>
_$MapKeyPathCopyWithImpl<MapKeyPath>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(int index) listIndex,
required TResult Function(String? ref) mapKey,
required TResult Function(String name, String ownerUri, String ownerName)
objectProperty,
}) {
return mapKey(ref);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(int index)? listIndex,
TResult Function(String? ref)? mapKey,
TResult Function(String name, String ownerUri, String ownerName)?
objectProperty,
}) {
return mapKey?.call(ref);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(int index)? listIndex,
TResult Function(String? ref)? mapKey,
TResult Function(String name, String ownerUri, String ownerName)?
objectProperty,
required TResult orElse(),
}) {
if (mapKey != null) {
return mapKey(ref);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(ListIndexPath value) listIndex,
required TResult Function(MapKeyPath value) mapKey,
required TResult Function(PropertyPath value) objectProperty,
}) {
return mapKey(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(ListIndexPath value)? listIndex,
TResult Function(MapKeyPath value)? mapKey,
TResult Function(PropertyPath value)? objectProperty,
}) {
return mapKey?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(ListIndexPath value)? listIndex,
TResult Function(MapKeyPath value)? mapKey,
TResult Function(PropertyPath value)? objectProperty,
required TResult orElse(),
}) {
if (mapKey != null) {
return mapKey(this);
}
return orElse();
}
}
abstract class MapKeyPath implements PathToProperty {
const factory MapKeyPath({required String? ref}) = _$MapKeyPath;
String? get ref;
@JsonKey(ignore: true)
$MapKeyPathCopyWith<MapKeyPath> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $PropertyPathCopyWith<$Res> {
factory $PropertyPathCopyWith(
PropertyPath value, $Res Function(PropertyPath) then) =
_$PropertyPathCopyWithImpl<$Res>;
$Res call({String name, String ownerUri, String ownerName});
}
/// @nodoc
class _$PropertyPathCopyWithImpl<$Res>
extends _$PathToPropertyCopyWithImpl<$Res>
implements $PropertyPathCopyWith<$Res> {
_$PropertyPathCopyWithImpl(
PropertyPath _value, $Res Function(PropertyPath) _then)
: super(_value, (v) => _then(v as PropertyPath));
@override
PropertyPath get _value => super._value as PropertyPath;
@override
$Res call({
Object? name = freezed,
Object? ownerUri = freezed,
Object? ownerName = freezed,
}) {
return _then(PropertyPath(
name: name == freezed
? _value.name
: name // ignore: cast_nullable_to_non_nullable
as String,
ownerUri: ownerUri == freezed
? _value.ownerUri
: ownerUri // ignore: cast_nullable_to_non_nullable
as String,
ownerName: ownerName == freezed
? _value.ownerName
: ownerName // ignore: cast_nullable_to_non_nullable
as String,
));
}
}
/// @nodoc
class _$PropertyPath with DiagnosticableTreeMixin implements PropertyPath {
const _$PropertyPath(
{required this.name, required this.ownerUri, required this.ownerName});
@override
final String name;
@override
/// Path to the class/mixin that defined this property
final String ownerUri;
@override
/// Name of the class/mixin that defined this property
final String ownerName;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'PathToProperty.objectProperty(name: $name, ownerUri: $ownerUri, ownerName: $ownerName)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'PathToProperty.objectProperty'))
..add(DiagnosticsProperty('name', name))
..add(DiagnosticsProperty('ownerUri', ownerUri))
..add(DiagnosticsProperty('ownerName', ownerName));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is PropertyPath &&
const DeepCollectionEquality().equals(other.name, name) &&
const DeepCollectionEquality().equals(other.ownerUri, ownerUri) &&
const DeepCollectionEquality().equals(other.ownerName, ownerName));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(name),
const DeepCollectionEquality().hash(ownerUri),
const DeepCollectionEquality().hash(ownerName));
@JsonKey(ignore: true)
@override
$PropertyPathCopyWith<PropertyPath> get copyWith =>
_$PropertyPathCopyWithImpl<PropertyPath>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(int index) listIndex,
required TResult Function(String? ref) mapKey,
required TResult Function(String name, String ownerUri, String ownerName)
objectProperty,
}) {
return objectProperty(name, ownerUri, ownerName);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(int index)? listIndex,
TResult Function(String? ref)? mapKey,
TResult Function(String name, String ownerUri, String ownerName)?
objectProperty,
}) {
return objectProperty?.call(name, ownerUri, ownerName);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(int index)? listIndex,
TResult Function(String? ref)? mapKey,
TResult Function(String name, String ownerUri, String ownerName)?
objectProperty,
required TResult orElse(),
}) {
if (objectProperty != null) {
return objectProperty(name, ownerUri, ownerName);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(ListIndexPath value) listIndex,
required TResult Function(MapKeyPath value) mapKey,
required TResult Function(PropertyPath value) objectProperty,
}) {
return objectProperty(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(ListIndexPath value)? listIndex,
TResult Function(MapKeyPath value)? mapKey,
TResult Function(PropertyPath value)? objectProperty,
}) {
return objectProperty?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(ListIndexPath value)? listIndex,
TResult Function(MapKeyPath value)? mapKey,
TResult Function(PropertyPath value)? objectProperty,
required TResult orElse(),
}) {
if (objectProperty != null) {
return objectProperty(this);
}
return orElse();
}
}
abstract class PropertyPath implements PathToProperty {
const factory PropertyPath(
{required String name,
required String ownerUri,
required String ownerName}) = _$PropertyPath;
String get name;
/// Path to the class/mixin that defined this property
String get ownerUri;
/// Name of the class/mixin that defined this property
String get ownerName;
@JsonKey(ignore: true)
$PropertyPathCopyWith<PropertyPath> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
class _$ObjectFieldTearOff {
const _$ObjectFieldTearOff();
_ObjectField call(
{required String name,
required bool isFinal,
required String ownerName,
required String ownerUri,
required Result<InstanceRef> ref,
required EvalOnDartLibrary eval,
required bool isDefinedByDependency}) {
return _ObjectField(
name: name,
isFinal: isFinal,
ownerName: ownerName,
ownerUri: ownerUri,
ref: ref,
eval: eval,
isDefinedByDependency: isDefinedByDependency,
);
}
}
/// @nodoc
const $ObjectField = _$ObjectFieldTearOff();
/// @nodoc
mixin _$ObjectField {
String get name => throw _privateConstructorUsedError;
bool get isFinal => throw _privateConstructorUsedError;
String get ownerName => throw _privateConstructorUsedError;
String get ownerUri => throw _privateConstructorUsedError;
Result<InstanceRef> get ref => throw _privateConstructorUsedError;
/// An [EvalOnDartLibrary] that can access this field from the owner object
EvalOnDartLibrary get eval => throw _privateConstructorUsedError;
/// Whether this field was defined by the inspected app or by one of its dependencies
///
/// This is used by the UI to hide variables that are not useful for the user.
bool get isDefinedByDependency => throw _privateConstructorUsedError;
@JsonKey(ignore: true)
$ObjectFieldCopyWith<ObjectField> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $ObjectFieldCopyWith<$Res> {
factory $ObjectFieldCopyWith(
ObjectField value, $Res Function(ObjectField) then) =
_$ObjectFieldCopyWithImpl<$Res>;
$Res call(
{String name,
bool isFinal,
String ownerName,
String ownerUri,
Result<InstanceRef> ref,
EvalOnDartLibrary eval,
bool isDefinedByDependency});
$ResultCopyWith<InstanceRef, $Res> get ref;
}
/// @nodoc
class _$ObjectFieldCopyWithImpl<$Res> implements $ObjectFieldCopyWith<$Res> {
_$ObjectFieldCopyWithImpl(this._value, this._then);
final ObjectField _value;
// ignore: unused_field
final $Res Function(ObjectField) _then;
@override
$Res call({
Object? name = freezed,
Object? isFinal = freezed,
Object? ownerName = freezed,
Object? ownerUri = freezed,
Object? ref = freezed,
Object? eval = freezed,
Object? isDefinedByDependency = freezed,
}) {
return _then(_value.copyWith(
name: name == freezed
? _value.name
: name // ignore: cast_nullable_to_non_nullable
as String,
isFinal: isFinal == freezed
? _value.isFinal
: isFinal // ignore: cast_nullable_to_non_nullable
as bool,
ownerName: ownerName == freezed
? _value.ownerName
: ownerName // ignore: cast_nullable_to_non_nullable
as String,
ownerUri: ownerUri == freezed
? _value.ownerUri
: ownerUri // ignore: cast_nullable_to_non_nullable
as String,
ref: ref == freezed
? _value.ref
: ref // ignore: cast_nullable_to_non_nullable
as Result<InstanceRef>,
eval: eval == freezed
? _value.eval
: eval // ignore: cast_nullable_to_non_nullable
as EvalOnDartLibrary,
isDefinedByDependency: isDefinedByDependency == freezed
? _value.isDefinedByDependency
: isDefinedByDependency // ignore: cast_nullable_to_non_nullable
as bool,
));
}
@override
$ResultCopyWith<InstanceRef, $Res> get ref {
return $ResultCopyWith<InstanceRef, $Res>(_value.ref, (value) {
return _then(_value.copyWith(ref: value));
});
}
}
/// @nodoc
abstract class _$ObjectFieldCopyWith<$Res>
implements $ObjectFieldCopyWith<$Res> {
factory _$ObjectFieldCopyWith(
_ObjectField value, $Res Function(_ObjectField) then) =
__$ObjectFieldCopyWithImpl<$Res>;
@override
$Res call(
{String name,
bool isFinal,
String ownerName,
String ownerUri,
Result<InstanceRef> ref,
EvalOnDartLibrary eval,
bool isDefinedByDependency});
@override
$ResultCopyWith<InstanceRef, $Res> get ref;
}
/// @nodoc
class __$ObjectFieldCopyWithImpl<$Res> extends _$ObjectFieldCopyWithImpl<$Res>
implements _$ObjectFieldCopyWith<$Res> {
__$ObjectFieldCopyWithImpl(
_ObjectField _value, $Res Function(_ObjectField) _then)
: super(_value, (v) => _then(v as _ObjectField));
@override
_ObjectField get _value => super._value as _ObjectField;
@override
$Res call({
Object? name = freezed,
Object? isFinal = freezed,
Object? ownerName = freezed,
Object? ownerUri = freezed,
Object? ref = freezed,
Object? eval = freezed,
Object? isDefinedByDependency = freezed,
}) {
return _then(_ObjectField(
name: name == freezed
? _value.name
: name // ignore: cast_nullable_to_non_nullable
as String,
isFinal: isFinal == freezed
? _value.isFinal
: isFinal // ignore: cast_nullable_to_non_nullable
as bool,
ownerName: ownerName == freezed
? _value.ownerName
: ownerName // ignore: cast_nullable_to_non_nullable
as String,
ownerUri: ownerUri == freezed
? _value.ownerUri
: ownerUri // ignore: cast_nullable_to_non_nullable
as String,
ref: ref == freezed
? _value.ref
: ref // ignore: cast_nullable_to_non_nullable
as Result<InstanceRef>,
eval: eval == freezed
? _value.eval
: eval // ignore: cast_nullable_to_non_nullable
as EvalOnDartLibrary,
isDefinedByDependency: isDefinedByDependency == freezed
? _value.isDefinedByDependency
: isDefinedByDependency // ignore: cast_nullable_to_non_nullable
as bool,
));
}
}
/// @nodoc
class _$_ObjectField extends _ObjectField with DiagnosticableTreeMixin {
_$_ObjectField(
{required this.name,
required this.isFinal,
required this.ownerName,
required this.ownerUri,
required this.ref,
required this.eval,
required this.isDefinedByDependency})
: super._();
@override
final String name;
@override
final bool isFinal;
@override
final String ownerName;
@override
final String ownerUri;
@override
final Result<InstanceRef> ref;
@override
/// An [EvalOnDartLibrary] that can access this field from the owner object
final EvalOnDartLibrary eval;
@override
/// Whether this field was defined by the inspected app or by one of its dependencies
///
/// This is used by the UI to hide variables that are not useful for the user.
final bool isDefinedByDependency;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'ObjectField(name: $name, isFinal: $isFinal, ownerName: $ownerName, ownerUri: $ownerUri, ref: $ref, eval: $eval, isDefinedByDependency: $isDefinedByDependency)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'ObjectField'))
..add(DiagnosticsProperty('name', name))
..add(DiagnosticsProperty('isFinal', isFinal))
..add(DiagnosticsProperty('ownerName', ownerName))
..add(DiagnosticsProperty('ownerUri', ownerUri))
..add(DiagnosticsProperty('ref', ref))
..add(DiagnosticsProperty('eval', eval))
..add(
DiagnosticsProperty('isDefinedByDependency', isDefinedByDependency));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _ObjectField &&
const DeepCollectionEquality().equals(other.name, name) &&
const DeepCollectionEquality().equals(other.isFinal, isFinal) &&
const DeepCollectionEquality().equals(other.ownerName, ownerName) &&
const DeepCollectionEquality().equals(other.ownerUri, ownerUri) &&
const DeepCollectionEquality().equals(other.ref, ref) &&
const DeepCollectionEquality().equals(other.eval, eval) &&
const DeepCollectionEquality()
.equals(other.isDefinedByDependency, isDefinedByDependency));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(name),
const DeepCollectionEquality().hash(isFinal),
const DeepCollectionEquality().hash(ownerName),
const DeepCollectionEquality().hash(ownerUri),
const DeepCollectionEquality().hash(ref),
const DeepCollectionEquality().hash(eval),
const DeepCollectionEquality().hash(isDefinedByDependency));
@JsonKey(ignore: true)
@override
_$ObjectFieldCopyWith<_ObjectField> get copyWith =>
__$ObjectFieldCopyWithImpl<_ObjectField>(this, _$identity);
}
abstract class _ObjectField extends ObjectField {
factory _ObjectField(
{required String name,
required bool isFinal,
required String ownerName,
required String ownerUri,
required Result<InstanceRef> ref,
required EvalOnDartLibrary eval,
required bool isDefinedByDependency}) = _$_ObjectField;
_ObjectField._() : super._();
@override
String get name;
@override
bool get isFinal;
@override
String get ownerName;
@override
String get ownerUri;
@override
Result<InstanceRef> get ref;
@override
/// An [EvalOnDartLibrary] that can access this field from the owner object
EvalOnDartLibrary get eval;
@override
/// Whether this field was defined by the inspected app or by one of its dependencies
///
/// This is used by the UI to hide variables that are not useful for the user.
bool get isDefinedByDependency;
@override
@JsonKey(ignore: true)
_$ObjectFieldCopyWith<_ObjectField> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
class _$InstanceDetailsTearOff {
const _$InstanceDetailsTearOff();
NullInstance nill({required Setter? setter}) {
return NullInstance(
setter: setter,
);
}
BoolInstance boolean(String displayString,
{required String instanceRefId, required Setter? setter}) {
return BoolInstance(
displayString,
instanceRefId: instanceRefId,
setter: setter,
);
}
NumInstance number(String displayString,
{required String instanceRefId, required Setter? setter}) {
return NumInstance(
displayString,
instanceRefId: instanceRefId,
setter: setter,
);
}
StringInstance string(String displayString,
{required String instanceRefId, required Setter? setter}) {
return StringInstance(
displayString,
instanceRefId: instanceRefId,
setter: setter,
);
}
MapInstance map(List<InstanceDetails> keys,
{required int hash,
required String instanceRefId,
required Setter? setter}) {
return MapInstance(
keys,
hash: hash,
instanceRefId: instanceRefId,
setter: setter,
);
}
ListInstance list(
{required int length,
required int hash,
required String instanceRefId,
required Setter? setter}) {
return ListInstance(
length: length,
hash: hash,
instanceRefId: instanceRefId,
setter: setter,
);
}
ObjectInstance object(List<ObjectField> fields,
{required String type,
required int hash,
required String instanceRefId,
required Setter? setter,
required EvalOnDartLibrary evalForInstance}) {
return ObjectInstance(
fields,
type: type,
hash: hash,
instanceRefId: instanceRefId,
setter: setter,
evalForInstance: evalForInstance,
);
}
EnumInstance enumeration(
{required String type,
required String value,
required Setter? setter,
required String instanceRefId}) {
return EnumInstance(
type: type,
value: value,
setter: setter,
instanceRefId: instanceRefId,
);
}
}
/// @nodoc
const $InstanceDetails = _$InstanceDetailsTearOff();
/// @nodoc
mixin _$InstanceDetails {
Setter? get setter => throw _privateConstructorUsedError;
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(Setter? setter) nill,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
boolean,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
number,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
string,
required TResult Function(List<InstanceDetails> keys, int hash,
String instanceRefId, Setter? setter)
map,
required TResult Function(
int length, int hash, String instanceRefId, Setter? setter)
list,
required TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)
object,
required TResult Function(
String type, String value, Setter? setter, String instanceRefId)
enumeration,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
required TResult orElse(),
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(NullInstance value) nill,
required TResult Function(BoolInstance value) boolean,
required TResult Function(NumInstance value) number,
required TResult Function(StringInstance value) string,
required TResult Function(MapInstance value) map,
required TResult Function(ListInstance value) list,
required TResult Function(ObjectInstance value) object,
required TResult Function(EnumInstance value) enumeration,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
required TResult orElse(),
}) =>
throw _privateConstructorUsedError;
@JsonKey(ignore: true)
$InstanceDetailsCopyWith<InstanceDetails> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $InstanceDetailsCopyWith<$Res> {
factory $InstanceDetailsCopyWith(
InstanceDetails value, $Res Function(InstanceDetails) then) =
_$InstanceDetailsCopyWithImpl<$Res>;
$Res call({Setter? setter});
}
/// @nodoc
class _$InstanceDetailsCopyWithImpl<$Res>
implements $InstanceDetailsCopyWith<$Res> {
_$InstanceDetailsCopyWithImpl(this._value, this._then);
final InstanceDetails _value;
// ignore: unused_field
final $Res Function(InstanceDetails) _then;
@override
$Res call({
Object? setter = freezed,
}) {
return _then(_value.copyWith(
setter: setter == freezed
? _value.setter
: setter // ignore: cast_nullable_to_non_nullable
as Setter?,
));
}
}
/// @nodoc
abstract class $NullInstanceCopyWith<$Res>
implements $InstanceDetailsCopyWith<$Res> {
factory $NullInstanceCopyWith(
NullInstance value, $Res Function(NullInstance) then) =
_$NullInstanceCopyWithImpl<$Res>;
@override
$Res call({Setter? setter});
}
/// @nodoc
class _$NullInstanceCopyWithImpl<$Res>
extends _$InstanceDetailsCopyWithImpl<$Res>
implements $NullInstanceCopyWith<$Res> {
_$NullInstanceCopyWithImpl(
NullInstance _value, $Res Function(NullInstance) _then)
: super(_value, (v) => _then(v as NullInstance));
@override
NullInstance get _value => super._value as NullInstance;
@override
$Res call({
Object? setter = freezed,
}) {
return _then(NullInstance(
setter: setter == freezed
? _value.setter
: setter // ignore: cast_nullable_to_non_nullable
as Setter?,
));
}
}
/// @nodoc
class _$NullInstance extends NullInstance with DiagnosticableTreeMixin {
_$NullInstance({required this.setter}) : super._();
@override
final Setter? setter;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'InstanceDetails.nill(setter: $setter)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'InstanceDetails.nill'))
..add(DiagnosticsProperty('setter', setter));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is NullInstance &&
(identical(other.setter, setter) || other.setter == setter));
}
@override
int get hashCode => Object.hash(runtimeType, setter);
@JsonKey(ignore: true)
@override
$NullInstanceCopyWith<NullInstance> get copyWith =>
_$NullInstanceCopyWithImpl<NullInstance>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(Setter? setter) nill,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
boolean,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
number,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
string,
required TResult Function(List<InstanceDetails> keys, int hash,
String instanceRefId, Setter? setter)
map,
required TResult Function(
int length, int hash, String instanceRefId, Setter? setter)
list,
required TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)
object,
required TResult Function(
String type, String value, Setter? setter, String instanceRefId)
enumeration,
}) {
return nill(setter);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
}) {
return nill?.call(setter);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
required TResult orElse(),
}) {
if (nill != null) {
return nill(setter);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(NullInstance value) nill,
required TResult Function(BoolInstance value) boolean,
required TResult Function(NumInstance value) number,
required TResult Function(StringInstance value) string,
required TResult Function(MapInstance value) map,
required TResult Function(ListInstance value) list,
required TResult Function(ObjectInstance value) object,
required TResult Function(EnumInstance value) enumeration,
}) {
return nill(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
}) {
return nill?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
required TResult orElse(),
}) {
if (nill != null) {
return nill(this);
}
return orElse();
}
}
abstract class NullInstance extends InstanceDetails {
factory NullInstance({required Setter? setter}) = _$NullInstance;
NullInstance._() : super._();
@override
Setter? get setter;
@override
@JsonKey(ignore: true)
$NullInstanceCopyWith<NullInstance> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $BoolInstanceCopyWith<$Res>
implements $InstanceDetailsCopyWith<$Res> {
factory $BoolInstanceCopyWith(
BoolInstance value, $Res Function(BoolInstance) then) =
_$BoolInstanceCopyWithImpl<$Res>;
@override
$Res call({String displayString, String instanceRefId, Setter? setter});
}
/// @nodoc
class _$BoolInstanceCopyWithImpl<$Res>
extends _$InstanceDetailsCopyWithImpl<$Res>
implements $BoolInstanceCopyWith<$Res> {
_$BoolInstanceCopyWithImpl(
BoolInstance _value, $Res Function(BoolInstance) _then)
: super(_value, (v) => _then(v as BoolInstance));
@override
BoolInstance get _value => super._value as BoolInstance;
@override
$Res call({
Object? displayString = freezed,
Object? instanceRefId = freezed,
Object? setter = freezed,
}) {
return _then(BoolInstance(
displayString == freezed
? _value.displayString
: displayString // ignore: cast_nullable_to_non_nullable
as String,
instanceRefId: instanceRefId == freezed
? _value.instanceRefId
: instanceRefId // ignore: cast_nullable_to_non_nullable
as String,
setter: setter == freezed
? _value.setter
: setter // ignore: cast_nullable_to_non_nullable
as Setter?,
));
}
}
/// @nodoc
class _$BoolInstance extends BoolInstance with DiagnosticableTreeMixin {
_$BoolInstance(this.displayString,
{required this.instanceRefId, required this.setter})
: super._();
@override
final String displayString;
@override
final String instanceRefId;
@override
final Setter? setter;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'InstanceDetails.boolean(displayString: $displayString, instanceRefId: $instanceRefId, setter: $setter)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'InstanceDetails.boolean'))
..add(DiagnosticsProperty('displayString', displayString))
..add(DiagnosticsProperty('instanceRefId', instanceRefId))
..add(DiagnosticsProperty('setter', setter));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is BoolInstance &&
const DeepCollectionEquality()
.equals(other.displayString, displayString) &&
const DeepCollectionEquality()
.equals(other.instanceRefId, instanceRefId) &&
(identical(other.setter, setter) || other.setter == setter));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(displayString),
const DeepCollectionEquality().hash(instanceRefId),
setter);
@JsonKey(ignore: true)
@override
$BoolInstanceCopyWith<BoolInstance> get copyWith =>
_$BoolInstanceCopyWithImpl<BoolInstance>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(Setter? setter) nill,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
boolean,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
number,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
string,
required TResult Function(List<InstanceDetails> keys, int hash,
String instanceRefId, Setter? setter)
map,
required TResult Function(
int length, int hash, String instanceRefId, Setter? setter)
list,
required TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)
object,
required TResult Function(
String type, String value, Setter? setter, String instanceRefId)
enumeration,
}) {
return boolean(displayString, instanceRefId, setter);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
}) {
return boolean?.call(displayString, instanceRefId, setter);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
required TResult orElse(),
}) {
if (boolean != null) {
return boolean(displayString, instanceRefId, setter);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(NullInstance value) nill,
required TResult Function(BoolInstance value) boolean,
required TResult Function(NumInstance value) number,
required TResult Function(StringInstance value) string,
required TResult Function(MapInstance value) map,
required TResult Function(ListInstance value) list,
required TResult Function(ObjectInstance value) object,
required TResult Function(EnumInstance value) enumeration,
}) {
return boolean(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
}) {
return boolean?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
required TResult orElse(),
}) {
if (boolean != null) {
return boolean(this);
}
return orElse();
}
}
abstract class BoolInstance extends InstanceDetails {
factory BoolInstance(String displayString,
{required String instanceRefId,
required Setter? setter}) = _$BoolInstance;
BoolInstance._() : super._();
String get displayString;
String get instanceRefId;
@override
Setter? get setter;
@override
@JsonKey(ignore: true)
$BoolInstanceCopyWith<BoolInstance> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $NumInstanceCopyWith<$Res>
implements $InstanceDetailsCopyWith<$Res> {
factory $NumInstanceCopyWith(
NumInstance value, $Res Function(NumInstance) then) =
_$NumInstanceCopyWithImpl<$Res>;
@override
$Res call({String displayString, String instanceRefId, Setter? setter});
}
/// @nodoc
class _$NumInstanceCopyWithImpl<$Res>
extends _$InstanceDetailsCopyWithImpl<$Res>
implements $NumInstanceCopyWith<$Res> {
_$NumInstanceCopyWithImpl(
NumInstance _value, $Res Function(NumInstance) _then)
: super(_value, (v) => _then(v as NumInstance));
@override
NumInstance get _value => super._value as NumInstance;
@override
$Res call({
Object? displayString = freezed,
Object? instanceRefId = freezed,
Object? setter = freezed,
}) {
return _then(NumInstance(
displayString == freezed
? _value.displayString
: displayString // ignore: cast_nullable_to_non_nullable
as String,
instanceRefId: instanceRefId == freezed
? _value.instanceRefId
: instanceRefId // ignore: cast_nullable_to_non_nullable
as String,
setter: setter == freezed
? _value.setter
: setter // ignore: cast_nullable_to_non_nullable
as Setter?,
));
}
}
/// @nodoc
class _$NumInstance extends NumInstance with DiagnosticableTreeMixin {
_$NumInstance(this.displayString,
{required this.instanceRefId, required this.setter})
: super._();
@override
final String displayString;
@override
final String instanceRefId;
@override
final Setter? setter;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'InstanceDetails.number(displayString: $displayString, instanceRefId: $instanceRefId, setter: $setter)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'InstanceDetails.number'))
..add(DiagnosticsProperty('displayString', displayString))
..add(DiagnosticsProperty('instanceRefId', instanceRefId))
..add(DiagnosticsProperty('setter', setter));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is NumInstance &&
const DeepCollectionEquality()
.equals(other.displayString, displayString) &&
const DeepCollectionEquality()
.equals(other.instanceRefId, instanceRefId) &&
(identical(other.setter, setter) || other.setter == setter));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(displayString),
const DeepCollectionEquality().hash(instanceRefId),
setter);
@JsonKey(ignore: true)
@override
$NumInstanceCopyWith<NumInstance> get copyWith =>
_$NumInstanceCopyWithImpl<NumInstance>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(Setter? setter) nill,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
boolean,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
number,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
string,
required TResult Function(List<InstanceDetails> keys, int hash,
String instanceRefId, Setter? setter)
map,
required TResult Function(
int length, int hash, String instanceRefId, Setter? setter)
list,
required TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)
object,
required TResult Function(
String type, String value, Setter? setter, String instanceRefId)
enumeration,
}) {
return number(displayString, instanceRefId, setter);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
}) {
return number?.call(displayString, instanceRefId, setter);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
required TResult orElse(),
}) {
if (number != null) {
return number(displayString, instanceRefId, setter);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(NullInstance value) nill,
required TResult Function(BoolInstance value) boolean,
required TResult Function(NumInstance value) number,
required TResult Function(StringInstance value) string,
required TResult Function(MapInstance value) map,
required TResult Function(ListInstance value) list,
required TResult Function(ObjectInstance value) object,
required TResult Function(EnumInstance value) enumeration,
}) {
return number(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
}) {
return number?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
required TResult orElse(),
}) {
if (number != null) {
return number(this);
}
return orElse();
}
}
abstract class NumInstance extends InstanceDetails {
factory NumInstance(String displayString,
{required String instanceRefId, required Setter? setter}) = _$NumInstance;
NumInstance._() : super._();
String get displayString;
String get instanceRefId;
@override
Setter? get setter;
@override
@JsonKey(ignore: true)
$NumInstanceCopyWith<NumInstance> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $StringInstanceCopyWith<$Res>
implements $InstanceDetailsCopyWith<$Res> {
factory $StringInstanceCopyWith(
StringInstance value, $Res Function(StringInstance) then) =
_$StringInstanceCopyWithImpl<$Res>;
@override
$Res call({String displayString, String instanceRefId, Setter? setter});
}
/// @nodoc
class _$StringInstanceCopyWithImpl<$Res>
extends _$InstanceDetailsCopyWithImpl<$Res>
implements $StringInstanceCopyWith<$Res> {
_$StringInstanceCopyWithImpl(
StringInstance _value, $Res Function(StringInstance) _then)
: super(_value, (v) => _then(v as StringInstance));
@override
StringInstance get _value => super._value as StringInstance;
@override
$Res call({
Object? displayString = freezed,
Object? instanceRefId = freezed,
Object? setter = freezed,
}) {
return _then(StringInstance(
displayString == freezed
? _value.displayString
: displayString // ignore: cast_nullable_to_non_nullable
as String,
instanceRefId: instanceRefId == freezed
? _value.instanceRefId
: instanceRefId // ignore: cast_nullable_to_non_nullable
as String,
setter: setter == freezed
? _value.setter
: setter // ignore: cast_nullable_to_non_nullable
as Setter?,
));
}
}
/// @nodoc
class _$StringInstance extends StringInstance with DiagnosticableTreeMixin {
_$StringInstance(this.displayString,
{required this.instanceRefId, required this.setter})
: super._();
@override
final String displayString;
@override
final String instanceRefId;
@override
final Setter? setter;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'InstanceDetails.string(displayString: $displayString, instanceRefId: $instanceRefId, setter: $setter)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'InstanceDetails.string'))
..add(DiagnosticsProperty('displayString', displayString))
..add(DiagnosticsProperty('instanceRefId', instanceRefId))
..add(DiagnosticsProperty('setter', setter));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is StringInstance &&
const DeepCollectionEquality()
.equals(other.displayString, displayString) &&
const DeepCollectionEquality()
.equals(other.instanceRefId, instanceRefId) &&
(identical(other.setter, setter) || other.setter == setter));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(displayString),
const DeepCollectionEquality().hash(instanceRefId),
setter);
@JsonKey(ignore: true)
@override
$StringInstanceCopyWith<StringInstance> get copyWith =>
_$StringInstanceCopyWithImpl<StringInstance>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(Setter? setter) nill,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
boolean,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
number,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
string,
required TResult Function(List<InstanceDetails> keys, int hash,
String instanceRefId, Setter? setter)
map,
required TResult Function(
int length, int hash, String instanceRefId, Setter? setter)
list,
required TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)
object,
required TResult Function(
String type, String value, Setter? setter, String instanceRefId)
enumeration,
}) {
return string(displayString, instanceRefId, setter);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
}) {
return string?.call(displayString, instanceRefId, setter);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
required TResult orElse(),
}) {
if (string != null) {
return string(displayString, instanceRefId, setter);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(NullInstance value) nill,
required TResult Function(BoolInstance value) boolean,
required TResult Function(NumInstance value) number,
required TResult Function(StringInstance value) string,
required TResult Function(MapInstance value) map,
required TResult Function(ListInstance value) list,
required TResult Function(ObjectInstance value) object,
required TResult Function(EnumInstance value) enumeration,
}) {
return string(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
}) {
return string?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
required TResult orElse(),
}) {
if (string != null) {
return string(this);
}
return orElse();
}
}
abstract class StringInstance extends InstanceDetails {
factory StringInstance(String displayString,
{required String instanceRefId,
required Setter? setter}) = _$StringInstance;
StringInstance._() : super._();
String get displayString;
String get instanceRefId;
@override
Setter? get setter;
@override
@JsonKey(ignore: true)
$StringInstanceCopyWith<StringInstance> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $MapInstanceCopyWith<$Res>
implements $InstanceDetailsCopyWith<$Res> {
factory $MapInstanceCopyWith(
MapInstance value, $Res Function(MapInstance) then) =
_$MapInstanceCopyWithImpl<$Res>;
@override
$Res call(
{List<InstanceDetails> keys,
int hash,
String instanceRefId,
Setter? setter});
}
/// @nodoc
class _$MapInstanceCopyWithImpl<$Res>
extends _$InstanceDetailsCopyWithImpl<$Res>
implements $MapInstanceCopyWith<$Res> {
_$MapInstanceCopyWithImpl(
MapInstance _value, $Res Function(MapInstance) _then)
: super(_value, (v) => _then(v as MapInstance));
@override
MapInstance get _value => super._value as MapInstance;
@override
$Res call({
Object? keys = freezed,
Object? hash = freezed,
Object? instanceRefId = freezed,
Object? setter = freezed,
}) {
return _then(MapInstance(
keys == freezed
? _value.keys
: keys // ignore: cast_nullable_to_non_nullable
as List<InstanceDetails>,
hash: hash == freezed
? _value.hash
: hash // ignore: cast_nullable_to_non_nullable
as int,
instanceRefId: instanceRefId == freezed
? _value.instanceRefId
: instanceRefId // ignore: cast_nullable_to_non_nullable
as String,
setter: setter == freezed
? _value.setter
: setter // ignore: cast_nullable_to_non_nullable
as Setter?,
));
}
}
/// @nodoc
class _$MapInstance extends MapInstance with DiagnosticableTreeMixin {
_$MapInstance(this.keys,
{required this.hash, required this.instanceRefId, required this.setter})
: super._();
@override
final List<InstanceDetails> keys;
@override
final int hash;
@override
final String instanceRefId;
@override
final Setter? setter;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'InstanceDetails.map(keys: $keys, hash: $hash, instanceRefId: $instanceRefId, setter: $setter)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'InstanceDetails.map'))
..add(DiagnosticsProperty('keys', keys))
..add(DiagnosticsProperty('hash', hash))
..add(DiagnosticsProperty('instanceRefId', instanceRefId))
..add(DiagnosticsProperty('setter', setter));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is MapInstance &&
const DeepCollectionEquality().equals(other.keys, keys) &&
const DeepCollectionEquality().equals(other.hash, hash) &&
const DeepCollectionEquality()
.equals(other.instanceRefId, instanceRefId) &&
(identical(other.setter, setter) || other.setter == setter));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(keys),
const DeepCollectionEquality().hash(hash),
const DeepCollectionEquality().hash(instanceRefId),
setter);
@JsonKey(ignore: true)
@override
$MapInstanceCopyWith<MapInstance> get copyWith =>
_$MapInstanceCopyWithImpl<MapInstance>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(Setter? setter) nill,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
boolean,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
number,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
string,
required TResult Function(List<InstanceDetails> keys, int hash,
String instanceRefId, Setter? setter)
map,
required TResult Function(
int length, int hash, String instanceRefId, Setter? setter)
list,
required TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)
object,
required TResult Function(
String type, String value, Setter? setter, String instanceRefId)
enumeration,
}) {
return map(keys, hash, instanceRefId, setter);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
}) {
return map?.call(keys, hash, instanceRefId, setter);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
required TResult orElse(),
}) {
if (map != null) {
return map(keys, hash, instanceRefId, setter);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(NullInstance value) nill,
required TResult Function(BoolInstance value) boolean,
required TResult Function(NumInstance value) number,
required TResult Function(StringInstance value) string,
required TResult Function(MapInstance value) map,
required TResult Function(ListInstance value) list,
required TResult Function(ObjectInstance value) object,
required TResult Function(EnumInstance value) enumeration,
}) {
return map(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
}) {
return map?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
required TResult orElse(),
}) {
if (map != null) {
return map(this);
}
return orElse();
}
}
abstract class MapInstance extends InstanceDetails {
factory MapInstance(List<InstanceDetails> keys,
{required int hash,
required String instanceRefId,
required Setter? setter}) = _$MapInstance;
MapInstance._() : super._();
List<InstanceDetails> get keys;
int get hash;
String get instanceRefId;
@override
Setter? get setter;
@override
@JsonKey(ignore: true)
$MapInstanceCopyWith<MapInstance> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $ListInstanceCopyWith<$Res>
implements $InstanceDetailsCopyWith<$Res> {
factory $ListInstanceCopyWith(
ListInstance value, $Res Function(ListInstance) then) =
_$ListInstanceCopyWithImpl<$Res>;
@override
$Res call({int length, int hash, String instanceRefId, Setter? setter});
}
/// @nodoc
class _$ListInstanceCopyWithImpl<$Res>
extends _$InstanceDetailsCopyWithImpl<$Res>
implements $ListInstanceCopyWith<$Res> {
_$ListInstanceCopyWithImpl(
ListInstance _value, $Res Function(ListInstance) _then)
: super(_value, (v) => _then(v as ListInstance));
@override
ListInstance get _value => super._value as ListInstance;
@override
$Res call({
Object? length = freezed,
Object? hash = freezed,
Object? instanceRefId = freezed,
Object? setter = freezed,
}) {
return _then(ListInstance(
length: length == freezed
? _value.length
: length // ignore: cast_nullable_to_non_nullable
as int,
hash: hash == freezed
? _value.hash
: hash // ignore: cast_nullable_to_non_nullable
as int,
instanceRefId: instanceRefId == freezed
? _value.instanceRefId
: instanceRefId // ignore: cast_nullable_to_non_nullable
as String,
setter: setter == freezed
? _value.setter
: setter // ignore: cast_nullable_to_non_nullable
as Setter?,
));
}
}
/// @nodoc
class _$ListInstance extends ListInstance with DiagnosticableTreeMixin {
_$ListInstance(
{required this.length,
required this.hash,
required this.instanceRefId,
required this.setter})
: super._();
@override
final int length;
@override
final int hash;
@override
final String instanceRefId;
@override
final Setter? setter;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'InstanceDetails.list(length: $length, hash: $hash, instanceRefId: $instanceRefId, setter: $setter)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'InstanceDetails.list'))
..add(DiagnosticsProperty('length', length))
..add(DiagnosticsProperty('hash', hash))
..add(DiagnosticsProperty('instanceRefId', instanceRefId))
..add(DiagnosticsProperty('setter', setter));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is ListInstance &&
const DeepCollectionEquality().equals(other.length, length) &&
const DeepCollectionEquality().equals(other.hash, hash) &&
const DeepCollectionEquality()
.equals(other.instanceRefId, instanceRefId) &&
(identical(other.setter, setter) || other.setter == setter));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(length),
const DeepCollectionEquality().hash(hash),
const DeepCollectionEquality().hash(instanceRefId),
setter);
@JsonKey(ignore: true)
@override
$ListInstanceCopyWith<ListInstance> get copyWith =>
_$ListInstanceCopyWithImpl<ListInstance>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(Setter? setter) nill,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
boolean,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
number,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
string,
required TResult Function(List<InstanceDetails> keys, int hash,
String instanceRefId, Setter? setter)
map,
required TResult Function(
int length, int hash, String instanceRefId, Setter? setter)
list,
required TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)
object,
required TResult Function(
String type, String value, Setter? setter, String instanceRefId)
enumeration,
}) {
return list(length, hash, instanceRefId, setter);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
}) {
return list?.call(length, hash, instanceRefId, setter);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
required TResult orElse(),
}) {
if (list != null) {
return list(length, hash, instanceRefId, setter);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(NullInstance value) nill,
required TResult Function(BoolInstance value) boolean,
required TResult Function(NumInstance value) number,
required TResult Function(StringInstance value) string,
required TResult Function(MapInstance value) map,
required TResult Function(ListInstance value) list,
required TResult Function(ObjectInstance value) object,
required TResult Function(EnumInstance value) enumeration,
}) {
return list(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
}) {
return list?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
required TResult orElse(),
}) {
if (list != null) {
return list(this);
}
return orElse();
}
}
abstract class ListInstance extends InstanceDetails {
factory ListInstance(
{required int length,
required int hash,
required String instanceRefId,
required Setter? setter}) = _$ListInstance;
ListInstance._() : super._();
int get length;
int get hash;
String get instanceRefId;
@override
Setter? get setter;
@override
@JsonKey(ignore: true)
$ListInstanceCopyWith<ListInstance> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $ObjectInstanceCopyWith<$Res>
implements $InstanceDetailsCopyWith<$Res> {
factory $ObjectInstanceCopyWith(
ObjectInstance value, $Res Function(ObjectInstance) then) =
_$ObjectInstanceCopyWithImpl<$Res>;
@override
$Res call(
{List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance});
}
/// @nodoc
class _$ObjectInstanceCopyWithImpl<$Res>
extends _$InstanceDetailsCopyWithImpl<$Res>
implements $ObjectInstanceCopyWith<$Res> {
_$ObjectInstanceCopyWithImpl(
ObjectInstance _value, $Res Function(ObjectInstance) _then)
: super(_value, (v) => _then(v as ObjectInstance));
@override
ObjectInstance get _value => super._value as ObjectInstance;
@override
$Res call({
Object? fields = freezed,
Object? type = freezed,
Object? hash = freezed,
Object? instanceRefId = freezed,
Object? setter = freezed,
Object? evalForInstance = freezed,
}) {
return _then(ObjectInstance(
fields == freezed
? _value.fields
: fields // ignore: cast_nullable_to_non_nullable
as List<ObjectField>,
type: type == freezed
? _value.type
: type // ignore: cast_nullable_to_non_nullable
as String,
hash: hash == freezed
? _value.hash
: hash // ignore: cast_nullable_to_non_nullable
as int,
instanceRefId: instanceRefId == freezed
? _value.instanceRefId
: instanceRefId // ignore: cast_nullable_to_non_nullable
as String,
setter: setter == freezed
? _value.setter
: setter // ignore: cast_nullable_to_non_nullable
as Setter?,
evalForInstance: evalForInstance == freezed
? _value.evalForInstance
: evalForInstance // ignore: cast_nullable_to_non_nullable
as EvalOnDartLibrary,
));
}
}
/// @nodoc
class _$ObjectInstance extends ObjectInstance with DiagnosticableTreeMixin {
_$ObjectInstance(this.fields,
{required this.type,
required this.hash,
required this.instanceRefId,
required this.setter,
required this.evalForInstance})
: super._();
@override
final List<ObjectField> fields;
@override
final String type;
@override
final int hash;
@override
final String instanceRefId;
@override
final Setter? setter;
@override
/// An [EvalOnDartLibrary] associated with the library of this object
///
/// This allows to edit private properties.
final EvalOnDartLibrary evalForInstance;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'InstanceDetails.object(fields: $fields, type: $type, hash: $hash, instanceRefId: $instanceRefId, setter: $setter, evalForInstance: $evalForInstance)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'InstanceDetails.object'))
..add(DiagnosticsProperty('fields', fields))
..add(DiagnosticsProperty('type', type))
..add(DiagnosticsProperty('hash', hash))
..add(DiagnosticsProperty('instanceRefId', instanceRefId))
..add(DiagnosticsProperty('setter', setter))
..add(DiagnosticsProperty('evalForInstance', evalForInstance));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is ObjectInstance &&
const DeepCollectionEquality().equals(other.fields, fields) &&
const DeepCollectionEquality().equals(other.type, type) &&
const DeepCollectionEquality().equals(other.hash, hash) &&
const DeepCollectionEquality()
.equals(other.instanceRefId, instanceRefId) &&
(identical(other.setter, setter) || other.setter == setter) &&
const DeepCollectionEquality()
.equals(other.evalForInstance, evalForInstance));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(fields),
const DeepCollectionEquality().hash(type),
const DeepCollectionEquality().hash(hash),
const DeepCollectionEquality().hash(instanceRefId),
setter,
const DeepCollectionEquality().hash(evalForInstance));
@JsonKey(ignore: true)
@override
$ObjectInstanceCopyWith<ObjectInstance> get copyWith =>
_$ObjectInstanceCopyWithImpl<ObjectInstance>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(Setter? setter) nill,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
boolean,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
number,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
string,
required TResult Function(List<InstanceDetails> keys, int hash,
String instanceRefId, Setter? setter)
map,
required TResult Function(
int length, int hash, String instanceRefId, Setter? setter)
list,
required TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)
object,
required TResult Function(
String type, String value, Setter? setter, String instanceRefId)
enumeration,
}) {
return object(fields, type, hash, instanceRefId, setter, evalForInstance);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
}) {
return object?.call(
fields, type, hash, instanceRefId, setter, evalForInstance);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
required TResult orElse(),
}) {
if (object != null) {
return object(fields, type, hash, instanceRefId, setter, evalForInstance);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(NullInstance value) nill,
required TResult Function(BoolInstance value) boolean,
required TResult Function(NumInstance value) number,
required TResult Function(StringInstance value) string,
required TResult Function(MapInstance value) map,
required TResult Function(ListInstance value) list,
required TResult Function(ObjectInstance value) object,
required TResult Function(EnumInstance value) enumeration,
}) {
return object(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
}) {
return object?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
required TResult orElse(),
}) {
if (object != null) {
return object(this);
}
return orElse();
}
}
abstract class ObjectInstance extends InstanceDetails {
factory ObjectInstance(List<ObjectField> fields,
{required String type,
required int hash,
required String instanceRefId,
required Setter? setter,
required EvalOnDartLibrary evalForInstance}) = _$ObjectInstance;
ObjectInstance._() : super._();
List<ObjectField> get fields;
String get type;
int get hash;
String get instanceRefId;
@override
Setter? get setter;
/// An [EvalOnDartLibrary] associated with the library of this object
///
/// This allows to edit private properties.
EvalOnDartLibrary get evalForInstance;
@override
@JsonKey(ignore: true)
$ObjectInstanceCopyWith<ObjectInstance> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $EnumInstanceCopyWith<$Res>
implements $InstanceDetailsCopyWith<$Res> {
factory $EnumInstanceCopyWith(
EnumInstance value, $Res Function(EnumInstance) then) =
_$EnumInstanceCopyWithImpl<$Res>;
@override
$Res call({String type, String value, Setter? setter, String instanceRefId});
}
/// @nodoc
class _$EnumInstanceCopyWithImpl<$Res>
extends _$InstanceDetailsCopyWithImpl<$Res>
implements $EnumInstanceCopyWith<$Res> {
_$EnumInstanceCopyWithImpl(
EnumInstance _value, $Res Function(EnumInstance) _then)
: super(_value, (v) => _then(v as EnumInstance));
@override
EnumInstance get _value => super._value as EnumInstance;
@override
$Res call({
Object? type = freezed,
Object? value = freezed,
Object? setter = freezed,
Object? instanceRefId = freezed,
}) {
return _then(EnumInstance(
type: type == freezed
? _value.type
: type // ignore: cast_nullable_to_non_nullable
as String,
value: value == freezed
? _value.value
: value // ignore: cast_nullable_to_non_nullable
as String,
setter: setter == freezed
? _value.setter
: setter // ignore: cast_nullable_to_non_nullable
as Setter?,
instanceRefId: instanceRefId == freezed
? _value.instanceRefId
: instanceRefId // ignore: cast_nullable_to_non_nullable
as String,
));
}
}
/// @nodoc
class _$EnumInstance extends EnumInstance with DiagnosticableTreeMixin {
_$EnumInstance(
{required this.type,
required this.value,
required this.setter,
required this.instanceRefId})
: super._();
@override
final String type;
@override
final String value;
@override
final Setter? setter;
@override
final String instanceRefId;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'InstanceDetails.enumeration(type: $type, value: $value, setter: $setter, instanceRefId: $instanceRefId)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'InstanceDetails.enumeration'))
..add(DiagnosticsProperty('type', type))
..add(DiagnosticsProperty('value', value))
..add(DiagnosticsProperty('setter', setter))
..add(DiagnosticsProperty('instanceRefId', instanceRefId));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is EnumInstance &&
const DeepCollectionEquality().equals(other.type, type) &&
const DeepCollectionEquality().equals(other.value, value) &&
(identical(other.setter, setter) || other.setter == setter) &&
const DeepCollectionEquality()
.equals(other.instanceRefId, instanceRefId));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(type),
const DeepCollectionEquality().hash(value),
setter,
const DeepCollectionEquality().hash(instanceRefId));
@JsonKey(ignore: true)
@override
$EnumInstanceCopyWith<EnumInstance> get copyWith =>
_$EnumInstanceCopyWithImpl<EnumInstance>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(Setter? setter) nill,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
boolean,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
number,
required TResult Function(
String displayString, String instanceRefId, Setter? setter)
string,
required TResult Function(List<InstanceDetails> keys, int hash,
String instanceRefId, Setter? setter)
map,
required TResult Function(
int length, int hash, String instanceRefId, Setter? setter)
list,
required TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)
object,
required TResult Function(
String type, String value, Setter? setter, String instanceRefId)
enumeration,
}) {
return enumeration(type, value, setter, instanceRefId);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
}) {
return enumeration?.call(type, value, setter, instanceRefId);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(Setter? setter)? nill,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
boolean,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
number,
TResult Function(
String displayString, String instanceRefId, Setter? setter)?
string,
TResult Function(List<InstanceDetails> keys, int hash, String instanceRefId,
Setter? setter)?
map,
TResult Function(
int length, int hash, String instanceRefId, Setter? setter)?
list,
TResult Function(
List<ObjectField> fields,
String type,
int hash,
String instanceRefId,
Setter? setter,
EvalOnDartLibrary evalForInstance)?
object,
TResult Function(
String type, String value, Setter? setter, String instanceRefId)?
enumeration,
required TResult orElse(),
}) {
if (enumeration != null) {
return enumeration(type, value, setter, instanceRefId);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(NullInstance value) nill,
required TResult Function(BoolInstance value) boolean,
required TResult Function(NumInstance value) number,
required TResult Function(StringInstance value) string,
required TResult Function(MapInstance value) map,
required TResult Function(ListInstance value) list,
required TResult Function(ObjectInstance value) object,
required TResult Function(EnumInstance value) enumeration,
}) {
return enumeration(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
}) {
return enumeration?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(NullInstance value)? nill,
TResult Function(BoolInstance value)? boolean,
TResult Function(NumInstance value)? number,
TResult Function(StringInstance value)? string,
TResult Function(MapInstance value)? map,
TResult Function(ListInstance value)? list,
TResult Function(ObjectInstance value)? object,
TResult Function(EnumInstance value)? enumeration,
required TResult orElse(),
}) {
if (enumeration != null) {
return enumeration(this);
}
return orElse();
}
}
abstract class EnumInstance extends InstanceDetails {
factory EnumInstance(
{required String type,
required String value,
required Setter? setter,
required String instanceRefId}) = _$EnumInstance;
EnumInstance._() : super._();
String get type;
String get value;
@override
Setter? get setter;
String get instanceRefId;
@override
@JsonKey(ignore: true)
$EnumInstanceCopyWith<EnumInstance> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
class _$InstancePathTearOff {
const _$InstancePathTearOff();
_InstancePathFromInstanceId fromInstanceId(String instanceId,
{List<PathToProperty> pathToProperty = const []}) {
return _InstancePathFromInstanceId(
instanceId,
pathToProperty: pathToProperty,
);
}
_InstancePathFromProviderId fromProviderId(String providerId,
{List<PathToProperty> pathToProperty = const []}) {
return _InstancePathFromProviderId(
providerId,
pathToProperty: pathToProperty,
);
}
}
/// @nodoc
const $InstancePath = _$InstancePathTearOff();
/// @nodoc
mixin _$InstancePath {
List<PathToProperty> get pathToProperty => throw _privateConstructorUsedError;
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(
String instanceId, List<PathToProperty> pathToProperty)
fromInstanceId,
required TResult Function(
String providerId, List<PathToProperty> pathToProperty)
fromProviderId,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(String instanceId, List<PathToProperty> pathToProperty)?
fromInstanceId,
TResult Function(String providerId, List<PathToProperty> pathToProperty)?
fromProviderId,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(String instanceId, List<PathToProperty> pathToProperty)?
fromInstanceId,
TResult Function(String providerId, List<PathToProperty> pathToProperty)?
fromProviderId,
required TResult orElse(),
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(_InstancePathFromInstanceId value) fromInstanceId,
required TResult Function(_InstancePathFromProviderId value) fromProviderId,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(_InstancePathFromInstanceId value)? fromInstanceId,
TResult Function(_InstancePathFromProviderId value)? fromProviderId,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_InstancePathFromInstanceId value)? fromInstanceId,
TResult Function(_InstancePathFromProviderId value)? fromProviderId,
required TResult orElse(),
}) =>
throw _privateConstructorUsedError;
@JsonKey(ignore: true)
$InstancePathCopyWith<InstancePath> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $InstancePathCopyWith<$Res> {
factory $InstancePathCopyWith(
InstancePath value, $Res Function(InstancePath) then) =
_$InstancePathCopyWithImpl<$Res>;
$Res call({List<PathToProperty> pathToProperty});
}
/// @nodoc
class _$InstancePathCopyWithImpl<$Res> implements $InstancePathCopyWith<$Res> {
_$InstancePathCopyWithImpl(this._value, this._then);
final InstancePath _value;
// ignore: unused_field
final $Res Function(InstancePath) _then;
@override
$Res call({
Object? pathToProperty = freezed,
}) {
return _then(_value.copyWith(
pathToProperty: pathToProperty == freezed
? _value.pathToProperty
: pathToProperty // ignore: cast_nullable_to_non_nullable
as List<PathToProperty>,
));
}
}
/// @nodoc
abstract class _$InstancePathFromInstanceIdCopyWith<$Res>
implements $InstancePathCopyWith<$Res> {
factory _$InstancePathFromInstanceIdCopyWith(
_InstancePathFromInstanceId value,
$Res Function(_InstancePathFromInstanceId) then) =
__$InstancePathFromInstanceIdCopyWithImpl<$Res>;
@override
$Res call({String instanceId, List<PathToProperty> pathToProperty});
}
/// @nodoc
class __$InstancePathFromInstanceIdCopyWithImpl<$Res>
extends _$InstancePathCopyWithImpl<$Res>
implements _$InstancePathFromInstanceIdCopyWith<$Res> {
__$InstancePathFromInstanceIdCopyWithImpl(_InstancePathFromInstanceId _value,
$Res Function(_InstancePathFromInstanceId) _then)
: super(_value, (v) => _then(v as _InstancePathFromInstanceId));
@override
_InstancePathFromInstanceId get _value =>
super._value as _InstancePathFromInstanceId;
@override
$Res call({
Object? instanceId = freezed,
Object? pathToProperty = freezed,
}) {
return _then(_InstancePathFromInstanceId(
instanceId == freezed
? _value.instanceId
: instanceId // ignore: cast_nullable_to_non_nullable
as String,
pathToProperty: pathToProperty == freezed
? _value.pathToProperty
: pathToProperty // ignore: cast_nullable_to_non_nullable
as List<PathToProperty>,
));
}
}
/// @nodoc
class _$_InstancePathFromInstanceId extends _InstancePathFromInstanceId
with DiagnosticableTreeMixin {
const _$_InstancePathFromInstanceId(this.instanceId,
{this.pathToProperty = const []})
: super._();
@override
final String instanceId;
@JsonKey()
@override
final List<PathToProperty> pathToProperty;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'InstancePath.fromInstanceId(instanceId: $instanceId, pathToProperty: $pathToProperty)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'InstancePath.fromInstanceId'))
..add(DiagnosticsProperty('instanceId', instanceId))
..add(DiagnosticsProperty('pathToProperty', pathToProperty));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _InstancePathFromInstanceId &&
const DeepCollectionEquality()
.equals(other.instanceId, instanceId) &&
const DeepCollectionEquality()
.equals(other.pathToProperty, pathToProperty));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(instanceId),
const DeepCollectionEquality().hash(pathToProperty));
@JsonKey(ignore: true)
@override
_$InstancePathFromInstanceIdCopyWith<_InstancePathFromInstanceId>
get copyWith => __$InstancePathFromInstanceIdCopyWithImpl<
_InstancePathFromInstanceId>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(
String instanceId, List<PathToProperty> pathToProperty)
fromInstanceId,
required TResult Function(
String providerId, List<PathToProperty> pathToProperty)
fromProviderId,
}) {
return fromInstanceId(instanceId, pathToProperty);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(String instanceId, List<PathToProperty> pathToProperty)?
fromInstanceId,
TResult Function(String providerId, List<PathToProperty> pathToProperty)?
fromProviderId,
}) {
return fromInstanceId?.call(instanceId, pathToProperty);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(String instanceId, List<PathToProperty> pathToProperty)?
fromInstanceId,
TResult Function(String providerId, List<PathToProperty> pathToProperty)?
fromProviderId,
required TResult orElse(),
}) {
if (fromInstanceId != null) {
return fromInstanceId(instanceId, pathToProperty);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(_InstancePathFromInstanceId value) fromInstanceId,
required TResult Function(_InstancePathFromProviderId value) fromProviderId,
}) {
return fromInstanceId(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(_InstancePathFromInstanceId value)? fromInstanceId,
TResult Function(_InstancePathFromProviderId value)? fromProviderId,
}) {
return fromInstanceId?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_InstancePathFromInstanceId value)? fromInstanceId,
TResult Function(_InstancePathFromProviderId value)? fromProviderId,
required TResult orElse(),
}) {
if (fromInstanceId != null) {
return fromInstanceId(this);
}
return orElse();
}
}
abstract class _InstancePathFromInstanceId extends InstancePath {
const factory _InstancePathFromInstanceId(String instanceId,
{List<PathToProperty> pathToProperty}) = _$_InstancePathFromInstanceId;
const _InstancePathFromInstanceId._() : super._();
String get instanceId;
@override
List<PathToProperty> get pathToProperty;
@override
@JsonKey(ignore: true)
_$InstancePathFromInstanceIdCopyWith<_InstancePathFromInstanceId>
get copyWith => throw _privateConstructorUsedError;
}
/// @nodoc
abstract class _$InstancePathFromProviderIdCopyWith<$Res>
implements $InstancePathCopyWith<$Res> {
factory _$InstancePathFromProviderIdCopyWith(
_InstancePathFromProviderId value,
$Res Function(_InstancePathFromProviderId) then) =
__$InstancePathFromProviderIdCopyWithImpl<$Res>;
@override
$Res call({String providerId, List<PathToProperty> pathToProperty});
}
/// @nodoc
class __$InstancePathFromProviderIdCopyWithImpl<$Res>
extends _$InstancePathCopyWithImpl<$Res>
implements _$InstancePathFromProviderIdCopyWith<$Res> {
__$InstancePathFromProviderIdCopyWithImpl(_InstancePathFromProviderId _value,
$Res Function(_InstancePathFromProviderId) _then)
: super(_value, (v) => _then(v as _InstancePathFromProviderId));
@override
_InstancePathFromProviderId get _value =>
super._value as _InstancePathFromProviderId;
@override
$Res call({
Object? providerId = freezed,
Object? pathToProperty = freezed,
}) {
return _then(_InstancePathFromProviderId(
providerId == freezed
? _value.providerId
: providerId // ignore: cast_nullable_to_non_nullable
as String,
pathToProperty: pathToProperty == freezed
? _value.pathToProperty
: pathToProperty // ignore: cast_nullable_to_non_nullable
as List<PathToProperty>,
));
}
}
/// @nodoc
class _$_InstancePathFromProviderId extends _InstancePathFromProviderId
with DiagnosticableTreeMixin {
const _$_InstancePathFromProviderId(this.providerId,
{this.pathToProperty = const []})
: super._();
@override
final String providerId;
@JsonKey()
@override
final List<PathToProperty> pathToProperty;
@override
String toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) {
return 'InstancePath.fromProviderId(providerId: $providerId, pathToProperty: $pathToProperty)';
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties
..add(DiagnosticsProperty('type', 'InstancePath.fromProviderId'))
..add(DiagnosticsProperty('providerId', providerId))
..add(DiagnosticsProperty('pathToProperty', pathToProperty));
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _InstancePathFromProviderId &&
const DeepCollectionEquality()
.equals(other.providerId, providerId) &&
const DeepCollectionEquality()
.equals(other.pathToProperty, pathToProperty));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(providerId),
const DeepCollectionEquality().hash(pathToProperty));
@JsonKey(ignore: true)
@override
_$InstancePathFromProviderIdCopyWith<_InstancePathFromProviderId>
get copyWith => __$InstancePathFromProviderIdCopyWithImpl<
_InstancePathFromProviderId>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(
String instanceId, List<PathToProperty> pathToProperty)
fromInstanceId,
required TResult Function(
String providerId, List<PathToProperty> pathToProperty)
fromProviderId,
}) {
return fromProviderId(providerId, pathToProperty);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(String instanceId, List<PathToProperty> pathToProperty)?
fromInstanceId,
TResult Function(String providerId, List<PathToProperty> pathToProperty)?
fromProviderId,
}) {
return fromProviderId?.call(providerId, pathToProperty);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(String instanceId, List<PathToProperty> pathToProperty)?
fromInstanceId,
TResult Function(String providerId, List<PathToProperty> pathToProperty)?
fromProviderId,
required TResult orElse(),
}) {
if (fromProviderId != null) {
return fromProviderId(providerId, pathToProperty);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(_InstancePathFromInstanceId value) fromInstanceId,
required TResult Function(_InstancePathFromProviderId value) fromProviderId,
}) {
return fromProviderId(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(_InstancePathFromInstanceId value)? fromInstanceId,
TResult Function(_InstancePathFromProviderId value)? fromProviderId,
}) {
return fromProviderId?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_InstancePathFromInstanceId value)? fromInstanceId,
TResult Function(_InstancePathFromProviderId value)? fromProviderId,
required TResult orElse(),
}) {
if (fromProviderId != null) {
return fromProviderId(this);
}
return orElse();
}
}
abstract class _InstancePathFromProviderId extends InstancePath {
const factory _InstancePathFromProviderId(String providerId,
{List<PathToProperty> pathToProperty}) = _$_InstancePathFromProviderId;
const _InstancePathFromProviderId._() : super._();
String get providerId;
@override
List<PathToProperty> get pathToProperty;
@override
@JsonKey(ignore: true)
_$InstancePathFromProviderIdCopyWith<_InstancePathFromProviderId>
get copyWith => throw _privateConstructorUsedError;
}
| devtools/packages/devtools_app/lib/src/screens/provider/instance_viewer/instance_details.freezed.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/provider/instance_viewer/instance_details.freezed.dart",
"repo_id": "devtools",
"token_count": 45283
} | 132 |
// 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 'package:collection/collection.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:flutter/foundation.dart';
import 'package:vm_service/vm_service.dart';
import '../../../shared/globals.dart';
import '../../debugger/codeview_controller.dart';
import '../../debugger/program_explorer_controller.dart';
import '../vm_service_private_extensions.dart';
import 'class_hierarchy_explorer_controller.dart';
import 'object_store_controller.dart';
import 'object_viewport.dart';
import 'vm_object_model.dart';
/// Stores the state information for the object inspector view related to
/// the object history and the object viewport.
class ObjectInspectorViewController extends DisposableController
with AutoDisposeControllerMixin {
ObjectInspectorViewController({
ClassHierarchyExplorerController? classHierarchyController,
}) : classHierarchyController =
classHierarchyController ?? ClassHierarchyExplorerController() {
addAutoDisposeListener(
scriptManager.sortedScripts,
_initializeForCurrentIsolate,
);
addAutoDisposeListener(
objectHistory.current,
_onCurrentObjectChanged,
);
}
final programExplorerController =
ProgramExplorerController(showCodeNodes: true);
final ClassHierarchyExplorerController classHierarchyController;
final codeViewController = CodeViewController();
final objectStoreController = ObjectStoreController();
final objectHistory = ObjectHistory();
ValueListenable<bool> get refreshing => _refreshing;
final _refreshing = ValueNotifier<bool>(false);
bool _initialized = false;
Future<void> init() async {
if (!_initialized) {
await programExplorerController.initialize();
programExplorerController.initListeners();
_initializeForCurrentIsolate();
_initialized = true;
}
}
Future<void> _onCurrentObjectChanged() async {
final currentObjectValue = objectHistory.current.value;
if (currentObjectValue != null) {
try {
final scriptRef = currentObjectValue.scriptRef ??
(await programExplorerController
.searchFileExplorer(currentObjectValue.obj))
.script;
if (scriptRef != null) {
await programExplorerController.selectScriptNode(scriptRef);
}
} on StateError {
// Couldn't find a node for the newly pushed object. It's likely that
// this is an object from the object store that isn't otherwise
// reachable from the isolate's libraries, or it's an instance object.
programExplorerController.clearSelection();
return;
}
final outlineNode = programExplorerController.breadthFirstSearchObject(
currentObjectValue.obj,
programExplorerController.outlineNodes.value,
);
if (outlineNode != null) {
programExplorerController
..selectOutlineNode(outlineNode)
..expandToNode(outlineNode);
} else {
programExplorerController.resetOutline();
}
} else {
programExplorerController.resetOutline();
}
}
Future<void> refreshObject() async {
_refreshing.value = true;
final objRef = objectHistory.current.value?.ref;
if (objRef != null) {
final refetchedObject = await createVmObject(
objRef,
scriptRef: objectHistory.current.value!.scriptRef,
);
if (refetchedObject != null) {
objectHistory.replaceCurrent(refetchedObject);
}
}
_refreshing.value = false;
}
Future<void> pushObject(ObjRef objRef, {ScriptRef? scriptRef}) async {
_refreshing.value = true;
final object = await createVmObject(objRef, scriptRef: scriptRef);
if (object != null) {
objectHistory.pushEntry(object);
}
_refreshing.value = false;
}
Future<VmObject?> createVmObject(
ObjRef objRef, {
ScriptRef? scriptRef,
}) async {
VmObject object;
if (objRef is ClassRef) {
object = ClassObject(
ref: objRef,
scriptRef: scriptRef,
);
} else if (objRef is FuncRef) {
object = FuncObject(
ref: objRef,
scriptRef: scriptRef,
);
} else if (objRef is FieldRef) {
object = FieldObject(
ref: objRef,
scriptRef: scriptRef,
);
} else if (objRef is LibraryRef) {
object = LibraryObject(
ref: objRef,
scriptRef: scriptRef,
);
} else if (objRef is ScriptRef) {
object = ScriptObject(
ref: objRef,
scriptRef: scriptRef,
);
} else if (objRef is InstanceRef) {
object = InstanceObject(
ref: objRef,
);
} else if (objRef is CodeRef) {
object = CodeObject(
ref: objRef,
);
} else if (objRef.isObjectPool) {
object = ObjectPoolObject(
ref: objRef,
);
} else if (objRef.isICData) {
object = ICDataObject(
ref: objRef,
);
} else if (objRef.isSubtypeTestCache) {
object = SubtypeTestCacheObject(
ref: objRef,
);
} else if (objRef.isWeakArray) {
object = WeakArrayObject(
ref: objRef,
);
} else {
object = UnknownObject(
ref: objRef,
);
}
await object.initialize();
return object;
}
/// Re-initializes the object inspector's state when building it for the
/// first time or when the selected isolate is updated.
void _initializeForCurrentIsolate() async {
objectHistory.clear();
await objectStoreController.refresh();
await classHierarchyController.refresh();
final scriptRefs = scriptManager.sortedScripts.value;
final service = serviceConnection.serviceManager.service!;
final isolate = await service.getIsolate(
serviceConnection
.serviceManager.isolateManager.selectedIsolate.value!.id!,
);
final mainScriptRef = scriptRefs.firstWhereOrNull((ref) {
return ref.uri == isolate.rootLib?.uri;
});
if (mainScriptRef != null) {
await programExplorerController.selectScriptNode(mainScriptRef);
final parts = mainScriptRef.uri!.split('/')..removeLast();
final libraries = isolate.libraries!;
if (parts.isEmpty) {
for (final lib in libraries) {
if (lib.uri == mainScriptRef.uri) {
return await pushObject(lib, scriptRef: mainScriptRef);
}
}
}
await pushObject(mainScriptRef, scriptRef: mainScriptRef);
}
}
Future<void> findAndSelectNodeForObject(ObjRef obj) async {
codeViewController.clearState();
ScriptRef? script;
try {
final node = await programExplorerController.searchFileExplorer(obj);
script = node.script ?? node.location!.scriptRef;
} on StateError {
// The node doesn't exist, so it must be an instance or an object from
// the object store.
programExplorerController.clearSelection();
}
await pushObject(obj, scriptRef: script);
}
}
| devtools/packages/devtools_app/lib/src/screens/vm_developer/object_inspector/object_inspector_view_controller.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/vm_developer/object_inspector/object_inspector_view_controller.dart",
"repo_id": "devtools",
"token_count": 2682
} | 133 |
// 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.
import '../../../shared/charts/treemap.dart';
import '../../../shared/table/table_data.dart';
import 'process_memory_view_controller.dart';
class CategoryColumn extends TreeColumnData<TreemapNode> {
CategoryColumn() : super('Category');
@override
String getValue(TreemapNode dataObject) => dataObject.name;
}
class DescriptionColumn extends ColumnData<TreemapNode> {
DescriptionColumn() : super.wide('Description');
@override
String getValue(TreemapNode dataObject) => dataObject.caption ?? '';
}
class MemoryColumn extends SizeAndPercentageColumn<TreemapNode> {
MemoryColumn({required VMProcessMemoryViewController controller})
: super(
title: 'Memory Usage',
sizeProvider: (node) => node.byteSize,
percentAsDoubleProvider: (node) =>
node.byteSize / controller.treeRoot.value!.byteSize,
);
}
| devtools/packages/devtools_app/lib/src/screens/vm_developer/process_memory/process_memory_tree_columns.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/screens/vm_developer/process_memory/process_memory_tree_columns.dart",
"repo_id": "devtools",
"token_count": 336
} | 134 |
// 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 'dart:convert';
import 'package:vm_service/vm_service.dart';
import '../shared/globals.dart';
import '../shared/primitives/message_bus.dart';
/// A class which listens for all traffic over the VM service protocol and logs
/// the traffic to the message bus.
///
/// The messages are then available in the Logging page. This class is typically
/// only used during development by engineers working on DevTools.
class VmServiceTrafficLogger {
VmServiceTrafficLogger(VmService service) {
_sendSub = service.onSend.listen(_logServiceProtocolCalls);
_receiveSub = service.onReceive.listen(_logServiceProtocolResponses);
}
static const eventName = 'devtools.service';
late final StreamSubscription _sendSub;
late final StreamSubscription _receiveSub;
void _logServiceProtocolCalls(String message) {
final Map m = jsonDecode(message);
final String? method = m['method'];
final String? id = m['id'];
messageBus.addEvent(
BusEvent(
eventName,
data: '⇨ #$id $method()\n$message',
),
);
}
void _logServiceProtocolResponses(String message) {
final Map m = jsonDecode(message);
String? details = m['method'];
if (details == null) {
final Map<String, dynamic>? result = m['result'];
if (result != null) {
details = result['type'];
} else {
final Map<String, dynamic>? error = m['error'];
details = error == null ? '' : '$error';
}
} else if (details == 'streamNotify') {
details = '';
}
final String? id = m['id'];
String? streamId = '';
String? kind = '';
if (m['params'] != null) {
final Map p = m['params'];
streamId = p['streamId'];
final Map? event = m['event'];
if (event != null) {
kind = event['extensionKind'] ?? event['kind'];
}
}
messageBus.addEvent(
BusEvent(
eventName,
data:
' ⇦ ${id == null ? '' : '#$id '}$details$streamId $kind\n$message',
),
);
}
void dispose() {
unawaited(_sendSub.cancel());
unawaited(_receiveSub.cancel());
}
}
| devtools/packages/devtools_app/lib/src/service/vm_service_logger.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/service/vm_service_logger.dart",
"repo_id": "devtools",
"token_count": 874
} | 135 |
// 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.
part of '../constants.dart';
enum PerformanceEvents {
refreshTimelineEvents,
includeCpuSamplesInTimeline,
performanceOverlay,
timelineFlameChartHelp,
framesChartVisibility,
selectFlutterFrame,
traceEventProcessingTime,
trackRebuilds,
trackUserCreatedWidgetBuilds,
trackPaints,
trackLayouts,
profilePlatformChannels,
enhanceTracingButtonSmall,
disableClipLayers,
disableOpacityLayers,
disablePhysicalShapeLayers,
collectRasterStats,
clearRasterStats,
fullScreenLayerImage,
clearRebuildStats,
perfettoModeTraceEventProcessingTime('traceEventProcessingTime-perfettoMode'),
perfettoLoadTrace,
perfettoScrollToTimeRange,
perfettoShowHelp,
performanceSettings,
timelineSettings,
openDataFile,
loadDataFromFile;
const PerformanceEvents([this.nameOverride]);
final String? nameOverride;
}
enum PerformanceDocs {
performanceOverlayDocs,
trackWidgetBuildsDocs,
trackPaintsDocs,
trackLayoutsDocs,
disableClipLayersDocs,
disableOpacityLayersDocs,
disablePhysicalShapeLayersDocs,
canvasSaveLayerDocs,
intrinsicOperationsDocs,
shaderCompilationDocs,
shaderCompilationDocsTooltipLink,
impellerDocsLink,
impellerDocsLinkFromRasterStats,
platformChannelsDocs,
}
| devtools/packages/devtools_app/lib/src/shared/analytics/constants/_performance_constants.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/analytics/constants/_performance_constants.dart",
"repo_id": "devtools",
"token_count": 439
} | 136 |
// 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/services.dart';
import 'package:logging/logging.dart';
import '../../globals.dart';
import '_copy_to_clipboard_desktop.dart'
if (dart.library.js_interop) '_copy_to_clipboard_web.dart';
final _log = Logger('copy_to_clipboard');
/// Attempts to copy a String of `data` to the clipboard.
///
/// Shows a `successMessage` [Notification] on the passed in `context`, if the
/// copy is successfully done using the [Clipboard.setData] api. Otherwise it
/// attempts to post the [data] to the parent frame where the parent frame will
/// try to complete the copy (this fallback will only work in VSCode).
Future<void> copyToClipboard(
String data,
String? successMessage,
) async {
try {
await Clipboard.setData(
ClipboardData(
text: data,
),
);
if (successMessage != null) notificationService.push(successMessage);
} catch (e) {
if (ideTheme.embed) {
_log.warning(
'DevTools copy failed. This may be as a result of a known bug in VSCode. '
'See https://github.com/Dart-Code/Dart-Code/issues/4540 for more '
'information. DevTools will now attempt to use a fallback method of '
'copying the contents.',
);
// Trying to use Clipboard.setData to copy in vscode will not work as a
// result of a bug. So we should fallback to `copyToClipboardVSCode` which
// delegates the copy to the frame above DevTools.
// Sending this message in other environments will just have no effect.
// See https://github.com/Dart-Code/Dart-Code/issues/4540 for more
// information.
copyToClipboardVSCode(data);
} else {
rethrow;
}
}
}
| devtools/packages/devtools_app/lib/src/shared/config_specific/copy_to_clipboard/copy_to_clipboard.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/config_specific/copy_to_clipboard/copy_to_clipboard.dart",
"repo_id": "devtools",
"token_count": 667
} | 137 |
// 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/service.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:flutter/foundation.dart';
import 'package:vm_service/vm_service.dart';
import 'console/primitives/eval_history.dart';
import 'diagnostics/dap_object_node.dart';
import 'diagnostics/dart_object_node.dart';
/// Extension methods for the [ConnectedApp] class.
///
/// Using extension methods makes testing easier, as we do not have to mock
/// these methods.
extension ConnectedAppExtension on ConnectedApp {
String get display {
final identifiers = <String>[];
if (isFlutterAppNow!) {
identifiers.addAll([
'Flutter',
isFlutterWebAppNow ? 'web' : 'native',
isProfileBuildNow! ? '(profile build)' : '(debug build)',
]);
} else {
identifiers.addAll(['Dart', isDartWebAppNow! ? 'web' : 'CLI']);
}
return identifiers.join(' ');
}
bool get isIosApp => operatingSystem == 'ios';
}
class AutocompleteCache {
final classes = <ClassRef, Class>{};
/// Cache of autocomplete matches for a library for code written within that
/// library.
///
/// This cache includes autocompletes from all libraries imported and exported
/// by the library as well as all private autocompletes for the library.
final libraryMemberAndImportsAutocomplete =
<LibraryRef, Future<Set<String?>>>{};
/// Cache of autocomplete matches to show for a library when that library is
/// imported.
///
/// This cache includes autocompletes from libraries exported by the library
/// but does not include autocompletes for libraries imported by this library.
final libraryMemberAutocomplete = <LibraryRef, Future<Set<String?>>>{};
void _clear() {
classes.clear();
libraryMemberAndImportsAutocomplete.clear();
libraryMemberAutocomplete.clear();
}
}
class AppState extends DisposableController with AutoDisposeControllerMixin {
AppState(ValueListenable<IsolateRef?> isolateRef) {
addAutoDisposeListener(isolateRef, () => cache._clear());
}
// TODO(polina-c): add explanation for variables.
ValueListenable<List<DartObjectNode>> get variables => _variables;
final _variables = ValueNotifier<List<DartObjectNode>>([]);
void setVariables(List<DartObjectNode> value) => _variables.value = value;
ValueListenable<List<DapObjectNode>> get dapVariables => _dapVariables;
final _dapVariables = ValueNotifier<List<DapObjectNode>>([]);
void setDapVariables(List<DapObjectNode> value) =>
_dapVariables.value = value;
ValueListenable<Frame?> get currentFrame => _currentFrame;
final _currentFrame = ValueNotifier<Frame?>(null);
void setCurrentFrame(Frame? value) => _currentFrame.value = value;
final EvalHistory evalHistory = EvalHistory();
final cache = AutocompleteCache();
@override
void dispose() {
_variables.dispose();
_currentFrame.dispose();
super.dispose();
}
}
| devtools/packages/devtools_app/lib/src/shared/connected_app.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/connected_app.dart",
"repo_id": "devtools",
"token_count": 981
} | 138 |
// 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 'package:flutter/material.dart' hide Stack;
import '../../../shared/primitives/listenable.dart';
import '../../../shared/tree.dart';
import '../../diagnostics/dart_object_node.dart';
import '../../diagnostics/tree_builder.dart';
import 'display_provider.dart';
class ExpandableVariable extends StatelessWidget {
const ExpandableVariable({
Key? key,
this.variable,
this.dataDisplayProvider,
this.isSelectable = true,
}) : super(key: key);
@visibleForTesting
static const emptyExpandableVariableKey = Key('empty expandable variable');
final DartObjectNode? variable;
final Widget Function(DartObjectNode, void Function())? dataDisplayProvider;
final bool isSelectable;
@override
Widget build(BuildContext context) {
final variable = this.variable;
if (variable == null) {
return const SizedBox(key: emptyExpandableVariableKey);
}
// TODO(kenz): preserve expanded state of tree on switching frames and
// on stepping.
return TreeView<DartObjectNode>(
dataRootsListenable:
FixedValueListenable<List<DartObjectNode>>([variable]),
dataDisplayProvider: dataDisplayProvider ??
(variable, onPressed) => DisplayProvider(
variable: variable,
onTap: onPressed,
),
onItemSelected: onItemPressed,
isSelectable: isSelectable,
);
}
Future<void> onItemPressed(
DartObjectNode v,
) async {
// On expansion, lazily build the variables tree for performance reasons.
if (v.isExpanded) {
await Future.wait(v.children.map(buildVariablesTree));
}
}
}
| devtools/packages/devtools_app/lib/src/shared/console/widgets/expandable_variable.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/console/widgets/expandable_variable.dart",
"repo_id": "devtools",
"token_count": 631
} | 139 |
// 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';
import 'package:devtools_app_shared/utils.dart';
import 'package:logging/logging.dart';
import 'package:vm_service/vm_service.dart';
import '../../screens/debugger/debugger_model.dart';
import '../globals.dart';
import '../memory/adapted_heap_data.dart';
import '../primitives/utils.dart';
import 'dart_object_node.dart';
import 'diagnostics_node.dart';
import 'generic_instance_reference.dart';
import 'helpers.dart';
import 'inspector_service.dart';
import 'object_group_api.dart';
import 'references.dart';
import 'variable_factory.dart';
final _log = Logger('tree_builder');
Future<void> _addExpandableChildren(
DartObjectNode variable,
List<DartObjectNode> children, {
bool expandAll = false,
}) async {
final tasks = <Future>[];
for (var child in children) {
if (expandAll) {
tasks.add(buildVariablesTree(child, expandAll: expandAll));
}
variable.addChild(child);
}
if (tasks.isNotEmpty) {
await Future.wait(tasks);
}
}
Future<void> _addDiagnosticsIfNeeded(
RemoteDiagnosticsNode? diagnostic,
IsolateRef? isolateRef,
DartObjectNode variable,
) async {
if (diagnostic == null || !includeDiagnosticPropertiesInDebugger) return;
final service = diagnostic.objectGroupApi;
Future<void> addPropertiesHelper(
List<RemoteDiagnosticsNode>? properties,
) async {
if (properties == null || service == null || isolateRef == null) return;
await _addExpandableChildren(
variable,
await createVariablesForDiagnostics(
service,
properties,
isolateRef,
),
expandAll: true,
);
}
if (diagnostic.inlineProperties.isNotEmpty) {
await addPropertiesHelper(diagnostic.inlineProperties);
} else {
assert(!service!.disposed);
if (!service!.disposed) {
await addPropertiesHelper(await diagnostic.getProperties(service));
}
}
}
Future<void> _addDiagnosticChildrenIfNeeded(
DartObjectNode variable,
RemoteDiagnosticsNode? diagnostic,
IsolateRef? isolateRef,
bool expandAll,
) async {
if (diagnostic == null || !includeDiagnosticChildren) return;
// Always add children last after properties to avoid confusion.
final InspectorObjectGroupApi<RemoteDiagnosticsNode>? service =
diagnostic.objectGroupApi;
final diagnosticChildren = await diagnostic.children;
if (diagnosticChildren != null && diagnosticChildren.isNotEmpty) {
final childrenNode = DartObjectNode.text(
pluralize('child', diagnosticChildren.length, plural: 'children'),
);
variable.addChild(childrenNode);
if (service != null && isolateRef != null) {
await _addExpandableChildren(
childrenNode,
await createVariablesForDiagnostics(
service,
diagnosticChildren,
isolateRef,
),
expandAll: expandAll,
);
}
}
}
void _setupGrouping(DartObjectNode variable) {
final numChildrenInGrouping =
variable.childCount >= pow(DartObjectNode.maxChildrenInGrouping, 2)
? (roundToNearestPow10(variable.childCount) /
DartObjectNode.maxChildrenInGrouping)
.floor()
: DartObjectNode.maxChildrenInGrouping;
var start = variable.offset;
final end = start + variable.childCount;
while (start < end) {
final count = min(end - start, numChildrenInGrouping);
variable.addChild(
DartObjectNode.grouping(variable.ref, offset: start, count: count),
);
start += count;
}
}
void _addInstanceSetItems(
DartObjectNode variable,
IsolateRef? isolateRef,
InstanceSet instanceSet,
) {
final instances = instanceSet.instances ?? [];
variable.addAllChildren(
createVariablesForInstanceSet(
variable.offset,
variable.childCount,
instances,
isolateRef,
),
);
}
Future<void> _addInstanceRefItems(
DartObjectNode variable,
InstanceRef instanceRef,
IsolateRef? isolateRef,
) async {
final ref = variable.ref;
assert(ref is! ObjectReferences);
final existingNames = <String>{};
for (var child in variable.children) {
final name = child.name;
if (name != null && name.isNotEmpty) {
existingNames.add(name);
if (!isPrivateMember(name)) {
// Assume private and public names with the same name reference the same
// data so showing both is not useful.
existingNames.add('_$name');
}
}
}
final result = await getObject(
variable: variable,
isolateRef: variable.ref!.isolateRef,
value: instanceRef,
);
if (result is Instance) {
_addChildrenToInstanceVariable(
variable: variable,
value: result,
isolateRef: isolateRef,
existingNames: existingNames,
heapSelection: ref?.heapSelection?.withoutObject(),
);
}
}
/// Adds children to the variable.
void _addChildrenToInstanceVariable({
required DartObjectNode variable,
required Instance value,
required IsolateRef? isolateRef,
required HeapObjectSelection? heapSelection,
Set<String>? existingNames,
}) {
switch (value.kind) {
case InstanceKind.kMap:
variable.addAllChildren(
createVariablesForMap(
value,
isolateRef,
),
);
break;
case InstanceKind.kList:
variable.addAllChildren(
createVariablesForList(value, isolateRef, heapSelection),
);
break;
case InstanceKind.kRecord:
variable.addAllChildren(
createVariablesForRecords(value, isolateRef),
);
break;
case InstanceKind.kUint8ClampedList:
case InstanceKind.kUint8List:
case InstanceKind.kUint16List:
case InstanceKind.kUint32List:
case InstanceKind.kUint64List:
case InstanceKind.kInt8List:
case InstanceKind.kInt16List:
case InstanceKind.kInt32List:
case InstanceKind.kInt64List:
case InstanceKind.kFloat32List:
case InstanceKind.kFloat64List:
case InstanceKind.kInt32x4List:
case InstanceKind.kFloat32x4List:
case InstanceKind.kFloat64x2List:
variable.addAllChildren(
createVariablesForBytes(value, isolateRef),
);
break;
case InstanceKind.kRegExp:
variable.addAllChildren(
createVariablesForRegExp(value, isolateRef),
);
break;
case InstanceKind.kClosure:
variable.addAllChildren(
createVariablesForClosure(value, isolateRef),
);
break;
case InstanceKind.kReceivePort:
variable.addAllChildren(
createVariablesForReceivePort(value, isolateRef),
);
break;
case InstanceKind.kType:
variable.addAllChildren(
createVariablesForType(value, isolateRef),
);
break;
case InstanceKind.kTypeParameter:
variable.addAllChildren(
createVariablesForTypeParameters(value, isolateRef),
);
break;
case InstanceKind.kFunctionType:
variable.addAllChildren(
createVariablesForFunctionType(value, isolateRef),
);
break;
case InstanceKind.kWeakProperty:
variable.addAllChildren(
createVariablesForWeakProperty(value, isolateRef),
);
break;
case InstanceKind.kStackTrace:
variable.addAllChildren(
createVariablesForStackTrace(value, isolateRef),
);
break;
case InstanceKind.kMirrorReference:
variable.addAllChildren(
createVariablesForMirrorReference(value, isolateRef),
);
break;
case InstanceKind.kUserTag:
variable.addAllChildren(
createVariablesForUserTag(value, isolateRef),
);
break;
default:
break;
}
if (variable.isSet) {
variable.addAllChildren(createVariablesForSets(value, isolateRef));
}
if (value.fields != null && value.kind != InstanceKind.kRecord) {
variable.addAllChildren(
createVariablesForFields(
value,
isolateRef,
existingNames: existingNames,
),
);
}
}
Future<void> _addValueItems(
DartObjectNode variable,
IsolateRef? isolateRef,
Object? value,
) async {
if (value is ObjRef) {
value = await getObject(isolateRef: isolateRef!, value: value);
switch (value.runtimeType) {
case Func:
final function = value as Func;
variable.addAllChildren(
createVariablesForFunc(function, isolateRef),
);
break;
case Context:
final context = value as Context;
variable.addAllChildren(
createVariablesForContext(context, isolateRef),
);
break;
}
} else if (value is! String && value is! num && value is! bool) {
switch (value.runtimeType) {
case Parameter:
final parameter = value as Parameter;
variable.addAllChildren(
createVariablesForParameter(parameter, isolateRef),
);
break;
}
}
}
Future<void> _addInspectorItems(
DartObjectNode variable,
IsolateRef? isolateRef,
) async {
final inspectorService = serviceConnection.inspectorService;
if (inspectorService != null) {
final tasks = <Future>[];
InspectorObjectGroupBase? group;
Future<void> maybeUpdateRef(DartObjectNode child) async {
final childRef = child.ref;
if (childRef == null) return;
if (childRef.diagnostic == null) {
// TODO(jacobr): also check whether the InstanceRef is an instance of
// Diagnosticable and show the Diagnosticable properties in that case.
final instanceRef = childRef.instanceRef;
// This is an approximation of eval('instanceRef is DiagnosticsNode')
// TODO(jacobr): cache the full class hierarchy so we can cheaply check
// instanceRef is DiagnosticsNode without having to do an eval.
if (instanceRef != null &&
(instanceRef.classRef?.name == 'DiagnosticableTreeNode' ||
instanceRef.classRef?.name == 'DiagnosticsProperty')) {
// The user is expecting to see the object the DiagnosticsNode is
// describing not the DiagnosticsNode itself.
try {
group ??= inspectorService.createObjectGroup('temp');
final valueInstanceRef = await group!.evalOnRef(
'object.value',
childRef,
);
// TODO(jacobr): add the Diagnostics properties as well?
child.ref = GenericInstanceRef(
isolateRef: isolateRef,
value: valueInstanceRef,
);
} catch (e) {
if (e is! SentinelException) {
_log.warning(
'Caught $e accessing the value of an object',
);
}
}
}
}
}
for (var child in variable.children) {
tasks.add(maybeUpdateRef(child));
}
if (tasks.isNotEmpty) {
await Future.wait(tasks);
unawaited(group?.dispose());
}
}
}
/// Builds the tree representation for a [DartObjectNode] object by querying
/// data, creating child [DartObjectNode] objects, and assigning parent-child
/// relationships.
///
/// We call this method as we expand variables in the variable tree, because
/// building the tree for all variable data at once is very expensive.
Future<void> buildVariablesTree(
DartObjectNode variable, {
bool expandAll = false,
}) async {
final ref = variable.ref;
if (!variable.isExpandable || variable.treeInitializeStarted || ref == null) {
return;
}
variable.treeInitializeStarted = true;
final isolateRef = ref.isolateRef;
final instanceRef = ref.instanceRef;
final diagnostic = ref.diagnostic;
final value = variable.value;
await _addDiagnosticsIfNeeded(
diagnostic,
isolateRef,
variable,
);
try {
if (ref is ObjectReferences) {
await addChildReferences(variable);
} else if (variable.childCount > DartObjectNode.maxChildrenInGrouping) {
_setupGrouping(variable);
} else if (instanceRef != null &&
serviceConnection.serviceManager.service != null) {
await _addInstanceRefItems(variable, instanceRef, isolateRef);
} else if (value is InstanceSet) {
_addInstanceSetItems(variable, isolateRef, value);
} else if (value != null) {
await _addValueItems(variable, isolateRef, value);
}
} on SentinelException {
// Fail gracefully if calling `getObject` throws a SentinelException.
} catch (ex, stack) {
variable.addChild(DartObjectNode.text('error: $ex\n$stack'));
}
if (ref.heapSelection != null &&
ref is! ObjectReferences &&
!variable.isGroup) {
addReferencesRoot(variable, ref);
}
await _addDiagnosticChildrenIfNeeded(
variable,
diagnostic,
isolateRef,
expandAll,
);
await _addInspectorItems(
variable,
isolateRef,
);
variable.treeInitializeComplete = true;
}
| devtools/packages/devtools_app/lib/src/shared/diagnostics/tree_builder.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/diagnostics/tree_builder.dart",
"repo_id": "devtools",
"token_count": 4906
} | 140 |
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// This file was pulled from dart:io.
// ignore_for_file: empty_statements
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: prefer_const_declarations
// ignore_for_file: prefer_final_locals
// ignore_for_file: prefer_is_empty
// ignore_for_file: prefer_single_quotes
// ignore_for_file: slash_for_doc_comments
// ignore_for_file: unnecessary_const
// ignore_for_file: unnecessary_new
// ignore_for_file: unused_catch_clause
// ignore_for_file: unused_local_variable
// ignore_for_file: avoid-throw-in-catch-block
part of 'http.dart';
// TODO(jacobr): cleanup this class with only static members.
// ignore: avoid_classes_with_only_static_members
/// Utility functions for working with dates with HTTP specific date formats.
class HttpDate {
// Parse a cookie date string.
static DateTime _parseCookieDate(String date) {
const List monthsLowerCase = const [
"jan",
"feb",
"mar",
"apr",
"may",
"jun",
"jul",
"aug",
"sep",
"oct",
"nov",
"dec",
];
int position = 0;
void error() {
throw new HttpException("Invalid cookie date $date");
}
bool isEnd() => position == date.length;
bool isDelimiter(String s) {
int char = s.codeUnitAt(0);
if (char == 0x09) return true;
if (char >= 0x20 && char <= 0x2F) return true;
if (char >= 0x3B && char <= 0x40) return true;
if (char >= 0x5B && char <= 0x60) return true;
if (char >= 0x7B && char <= 0x7E) return true;
return false;
}
bool isNonDelimiter(String s) {
int char = s.codeUnitAt(0);
if (char >= 0x00 && char <= 0x08) return true;
if (char >= 0x0A && char <= 0x1F) return true;
if (char >= 0x30 && char <= 0x39) return true; // Digit
if (char == 0x3A) return true; // ':'
if (char >= 0x41 && char <= 0x5A) return true; // Alpha
if (char >= 0x61 && char <= 0x7A) return true; // Alpha
if (char >= 0x7F && char <= 0xFF) return true; // Alpha
return false;
}
bool isDigit(String s) {
int char = s.codeUnitAt(0);
if (char > 0x2F && char < 0x3A) return true;
return false;
}
int getMonth(String month) {
if (month.length < 3) return -1;
return monthsLowerCase.indexOf(month.substring(0, 3));
}
int toInt(String s) {
int index = 0;
for (; index < s.length && isDigit(s[index]); index++) {
;
}
return int.parse(s.substring(0, index));
}
var tokens = <String>[];
while (!isEnd()) {
while (!isEnd() && isDelimiter(date[position])) {
position++;
}
int start = position;
while (!isEnd() && isNonDelimiter(date[position])) {
position++;
}
tokens.add(date.substring(start, position).toLowerCase());
while (!isEnd() && isDelimiter(date[position])) {
position++;
}
}
String? timeStr;
String? dayOfMonthStr;
String? monthStr;
String? yearStr;
for (var token in tokens) {
if (token.length < 1) continue;
if (timeStr == null &&
token.length >= 5 &&
isDigit(token[0]) &&
(token[1] == ":" || (isDigit(token[1]) && token[2] == ":"))) {
timeStr = token;
} else if (dayOfMonthStr == null && isDigit(token[0])) {
dayOfMonthStr = token;
} else if (monthStr == null && getMonth(token) >= 0) {
monthStr = token;
} else if (yearStr == null &&
token.length >= 2 &&
isDigit(token[0]) &&
isDigit(token[1])) {
yearStr = token;
}
}
if (timeStr == null ||
dayOfMonthStr == null ||
monthStr == null ||
yearStr == null) {
error();
}
int year = toInt(yearStr!);
if (year >= 70 && year <= 99) {
year += 1900;
} else if (year >= 0 && year <= 69) {
year += 2000;
}
if (year < 1601) error();
int dayOfMonth = toInt(dayOfMonthStr!);
if (dayOfMonth < 1 || dayOfMonth > 31) error();
int month = getMonth(monthStr!) + 1;
var timeList = timeStr!.split(":");
if (timeList.length != 3) error();
int hour = toInt(timeList[0]);
int minute = toInt(timeList[1]);
int second = toInt(timeList[2]);
if (hour > 23) error();
if (minute > 59) error();
if (second > 59) error();
return new DateTime.utc(year, month, dayOfMonth, hour, minute, second);
}
}
| devtools/packages/devtools_app/lib/src/shared/http/_http_date.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/http/_http_date.dart",
"repo_id": "devtools",
"token_count": 1966
} | 141 |
// 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:devtools_app_shared/service.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:flutter/foundation.dart';
import 'config_specific/import_export/import_export.dart';
import 'globals.dart';
import 'routing.dart';
/// Controller that manages offline mode for DevTools.
///
/// This class will be instantiated once and set as a global [offlineController]
/// that can be accessed from anywhere in DevTools.
class OfflineModeController {
/// Whether DevTools is in offline mode.
///
/// We consider DevTools to be in offline mode whenever there is "offline"
/// data, data that was previously saved from DevTools, being viewed as the
/// top level route in DevTools.
///
/// The value of [offlineMode] is independent of the DevTools connection
/// status. DevTools can be in offline mode both when connected to an app when
/// disconnected from an app.
ValueListenable<bool> get offlineMode => _offlineMode;
final _offlineMode = ValueNotifier<bool>(false);
/// The current offline data as raw JSON.
///
/// This value is set from [ImportController.importData] when offline data is
/// imported to DevTools.
var offlineDataJson = <String, dynamic>{};
/// Stores the [ConnectedApp] instance temporarily while switching between
/// offline and online modes.
///
/// We store this because the [serviceManager] is a global manager and expects
/// only one connected app. So we swap out the online connected app with the
/// offline app data while in offline mode.
ConnectedApp? previousConnectedApp;
/// Whether DevTools should load offline data for [screenId].
bool shouldLoadOfflineData(String screenId) {
return _offlineMode.value &&
offlineDataJson.isNotEmpty &&
offlineDataJson[screenId] != null;
}
void enterOfflineMode({required ConnectedApp offlineApp}) {
previousConnectedApp = serviceConnection.serviceManager.connectedApp;
serviceConnection.serviceManager.connectedApp = offlineApp;
_offlineMode.value = true;
}
void exitOfflineMode() {
serviceConnection.serviceManager.connectedApp = previousConnectedApp;
_offlineMode.value = false;
offlineDataJson.clear();
previousConnectedApp = null;
}
}
/// Mixin that provides offline support for a DevTools screen controller.
///
/// The [Screen] that is associated with this controller must have
/// [Screen.worksOffline] set to true in order to enable offline support for the
/// screen.
///
/// Example:
///
/// class MyScreenController with OfflineScreenControllerMixin<MyScreenData> {
/// MyScreenController() {
/// init();
/// }
///
/// void init() {
/// // If the screen supports reviewing history on app disconnect, add this.
/// initReviewHistoryOnDisconnectListener();
///
/// if (offlineController.offlineMode.value) {
/// await maybeLoadOfflineData(
/// ScreenMetaData.myScreen.id,
/// createData: (json) => MyScreenData.parse(json),
/// shouldLoad: (data) => data.isNotEmpty,
/// );
/// } else {
/// // Do normal screen initialization.
/// }
/// }
///
/// // Override the abstract methods from [OfflineScreenControllerMixin].
///
/// @override
/// OfflineScreenData screenDataForExport() => OfflineScreenData(
/// screenId: ScreenMetaData.myScreen.id,
/// data: {} // The data for this screen as a serializable JSON object.
/// );
///
/// @override
/// FutureOr<void> processOfflineData(MyScreenData offlineData) async {
/// // Set up the all the data models and notifiers that feed MyScreen's UI.
/// }
/// }
///
/// ...
///
/// Then in the DevTools [ScreenMetaData] enum, set 'worksOffline' to true.
///
/// enum ScreenMetaData {
/// ...
/// myScreen(
/// ...
/// worksOffline: true,
/// ),
/// }
mixin OfflineScreenControllerMixin<T> on AutoDisposeControllerMixin {
final _exportController = ExportController();
/// Whether this controller is actively loading offline data.
///
/// It is likely that a screen will want to show a loading indicator in place
/// of its normal UI while this value is true.
ValueListenable<bool> get loadingOfflineData => _loadingOfflineData;
final _loadingOfflineData = ValueNotifier<bool>(false);
/// Returns an [OfflineScreenData] object with the data that should be
/// included in the offline data snapshot for this screen.
OfflineScreenData screenDataForExport();
/// Defines how the offline data for this screen should be processed and set.
///
/// Each screen controller that mixes in [OfflineScreenControllerMixin] is
/// responsible for setting up the data models and feeding the data to the
/// screen for offline viewing - that should occur in this method.
FutureOr<void> processOfflineData(T offlineData);
/// Loads offline data for [screenId] when available, and when the
/// [shouldLoad] condition is met.
///
/// Screen controllers that mix in [OfflineScreenControllerMixin] should call
/// this during their initialization when DevTools is in offline mode, defined
/// by [offlineController.offlineMode].
@protected
Future<void> maybeLoadOfflineData(
String screenId, {
required T Function(Map<String, Object?> json) createData,
required bool Function(T data) shouldLoad,
}) async {
if (offlineController.shouldLoadOfflineData(screenId)) {
final json = Map<String, Object?>.from(
offlineController.offlineDataJson[screenId],
);
final screenData = createData(json);
if (shouldLoad(screenData)) {
await _loadOfflineData(screenData);
}
}
}
Future<void> _loadOfflineData(T offlineData) async {
_loadingOfflineData.value = true;
await processOfflineData(offlineData);
_loadingOfflineData.value = false;
}
/// Exports the current screen data to a .json file and downloads the file to
/// the user's Downloads directory.
void exportData() {
final encodedData = _exportController.encode(screenDataForExport().json);
_exportController.downloadFile(encodedData);
}
/// Adds a listener that will prepare the screen's current data for offline
/// viewing after an app disconnect.
///
/// This is in preparation for the user clicking the 'Review History' button
/// from the disconnect screen.
///
/// For screens that support the disconnect experience, which is a screen that
/// allows you to view historical data from before the app was disconnected
/// even after we lose connection to the device, this should be called in the
/// controller's initialization.
void initReviewHistoryOnDisconnectListener() {
addAutoDisposeListener(serviceConnection.serviceManager.connectedState, () {
final connectionState =
serviceConnection.serviceManager.connectedState.value;
if (!connectionState.connected &&
!connectionState.userInitiatedConnectionState) {
final currentScreenData = screenDataForExport();
// Only store data for the current page. We can change this in the
// future if we support offline imports for more than once screen at a
// time.
if (DevToolsRouterDelegate.currentPage == currentScreenData.screenId) {
final previouslyConnectedApp = offlineController.previousConnectedApp;
final offlineData = _exportController.generateDataForExport(
offlineScreenData: currentScreenData.json,
connectedApp: previouslyConnectedApp,
);
offlineController.offlineDataJson = offlineData;
}
}
});
}
}
/// Stores data for a screen that will be used to create a DevTools data export.
class OfflineScreenData {
OfflineScreenData({required this.screenId, required this.data});
/// The screen id that this data is associated with.
final String screenId;
/// The JSON serializable data for the screen.
///
/// This data will be encoded as JSON and written to a file when data is
/// exported from DevTools. This means that the values in [data] must be
/// primitive types that can be encoded as JSON.
final Map<String, Object?> data;
Map<String, Object?> get json => {
DevToolsExportKeys.activeScreenId.name: screenId,
screenId: data,
};
}
| devtools/packages/devtools_app/lib/src/shared/offline_mode.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/offline_mode.dart",
"repo_id": "devtools",
"token_count": 2496
} | 142 |
// 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:collection/collection.dart';
/// A dart object that represents a graph.
///
/// Each [GraphNode] has a set of [predecessors] and [successors], which
/// represent incoming and outgoing edges, respectively. A [GraphNode] in
/// [predecessors] or [successors] may have multiple edges to this [GraphNode].
///
/// For each predecessor [GraphNode] in [predecessors], the edge count to this
/// [GraphNode] from the predecessor is stored in [predecessorEdgeCounts].
///
/// For each successor [GraphNode] in [successors], the edge count from this
/// [GraphNode] to the successor is stored in [successorEdgeCounts].
class GraphNode {
/// Predecessors of this node.
final predecessors = <GraphNode>{};
/// Successors of this node.
final successors = <GraphNode>{};
/// Maps predecessor [GraphNode]s from [predecessors] to the number of
/// outgoing edges going to [this] node.
///
/// For example:
/// A (predecessor node)
/// / \
/// | |
/// \ /
/// B (this node)
///
/// ==> successorEdgeCounts[A] = 2
final predecessorEdgeCounts = <GraphNode, int>{};
/// Maps successor [GraphNode]s from [successors] to the number of incoming
/// edges coming from [this] node.
///
/// For example:
/// A (this node)
/// / \
/// | |
/// \ /
/// B (successor node)
///
/// ==> successorEdgeCounts[B] = 2
final successorEdgeCounts = <GraphNode, int>{};
/// Returns the percentage of this node's predecessor edges that connect to
/// [node].
double predecessorEdgePercentage(GraphNode node) {
if (predecessorEdgeCounts.keys.contains(node)) {
final totalEdgeCount = predecessorEdgeCounts.values.sum;
return predecessorEdgeCounts[node]! / totalEdgeCount;
}
return 0.0;
}
/// Returns the percentage of this node's sucessor edges that connect to
/// [node].
double successorEdgePercentage(GraphNode node) {
if (successorEdgeCounts.keys.contains(node)) {
final totalEdgeCount = successorEdgeCounts.values.sum;
return successorEdgeCounts[node]! / totalEdgeCount;
}
return 0.0;
}
/// Create outgoing edge from [this] node to the given node [n].
void outgoingEdge(GraphNode n, {int edgeWeight = 1}) {
n.predecessors.add(this);
final predEdgeCount = n.predecessorEdgeCounts[this] ?? 0;
n.predecessorEdgeCounts[this] = predEdgeCount + edgeWeight;
successors.add(n);
final succEdgeCount = successorEdgeCounts[n] ?? 0;
successorEdgeCounts[n] = succEdgeCount + edgeWeight;
}
}
| devtools/packages/devtools_app/lib/src/shared/primitives/graph.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/primitives/graph.dart",
"repo_id": "devtools",
"token_count": 906
} | 143 |
// 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';
/// Request DevTools property value 'firstRun' (GA dialog) stored in the file
/// '~/flutter-devtools/.devtools'.
Future<bool> isFirstRun() async {
bool firstRun = false;
if (isDevToolsServerAvailable) {
final resp = await request(apiGetDevToolsFirstRun);
if (resp?.statusCode == 200) {
firstRun = json.decode(resp!.body);
} else {
logWarning(resp, apiGetDevToolsFirstRun);
}
}
return firstRun;
}
/// Request DevTools property value 'enabled' (GA enabled) stored in the file
/// '~/.flutter-devtools/.devtools'.
Future<bool> isAnalyticsEnabled() async {
bool enabled = false;
if (isDevToolsServerAvailable) {
final resp = await request(apiGetDevToolsEnabled);
if (resp?.statusOk ?? false) {
enabled = json.decode(resp!.body);
} else {
logWarning(resp, apiGetDevToolsEnabled);
}
}
return enabled;
}
/// Set the DevTools property 'enabled' (GA enabled) stored in the file
/// '~/.flutter-devtools/.devtools'.
///
/// Returns whether the set call was successful.
Future<bool> setAnalyticsEnabled([bool value = true]) async {
if (isDevToolsServerAvailable) {
final resp = await request(
'$apiSetDevToolsEnabled'
'?$devToolsEnabledPropertyName=$value',
);
if (resp?.statusOk ?? false) {
assert(json.decode(resp!.body) == value);
return true;
} else {
logWarning(resp, apiSetDevToolsEnabled);
}
}
return false;
}
/// Fetch the consent message for package:unified_analytics.
Future<String> fetchAnalyticsConsentMessage() async {
String? consentMessage = '';
if (isDevToolsServerAvailable) {
final resp = await request(apiGetConsentMessage);
if (resp?.statusOk ?? false) {
consentMessage = resp!.body;
}
}
return consentMessage;
}
/// Confirm with package:unified_analytics that the consent message
/// has been shown to the user.
Future<void> markConsentMessageAsShown() async {
if (isDevToolsServerAvailable) {
await request(apiMarkConsentMessageAsShown);
}
}
// TODO(terry): Move to an API scheme similar to the VM service extension where
// '/api/devToolsEnabled' returns the value (identical VM service) and
// '/api/devToolsEnabled?value=true' sets the value.
/// Request Flutter tool stored property value enabled (GA enabled) stored in
/// the file '~\.flutter'.
///
/// Return bool.
/// Return value of false implies either GA is disabled or the Flutter Tool has
/// never been run (null returned from the server).
Future<bool> _isFlutterGAEnabled() async {
bool enabled = false;
if (isDevToolsServerAvailable) {
final resp = await request(apiGetFlutterGAEnabled);
if (resp?.statusOk ?? false) {
// A return value of 'null' implies Flutter tool has never been run so
// return false for Flutter GA enabled.
final responseValue = json.decode(resp!.body);
enabled = responseValue ?? false;
} else {
logWarning(resp, apiGetFlutterGAEnabled);
}
}
return enabled;
}
/// Request Flutter tool stored property value clientID (GA enabled) stored in
/// the file '~\.flutter'.
///
/// Return as a String, empty string implies Flutter Tool has never been run.
Future<String> flutterGAClientID() async {
// Default empty string, Flutter tool never run.
String clientId = '';
if (isDevToolsServerAvailable) {
// Test if Flutter is enabled (or if Flutter Tool ever ran) if not enabled
// is false, we don't want to be the first to create a ~/.flutter file.
if (await _isFlutterGAEnabled()) {
final resp = await request(apiGetFlutterGAClientId);
if (resp?.statusOk ?? false) {
clientId = json.decode(resp!.body);
if (clientId.isEmpty) {
// Requested value of 'null' (Flutter tool never ran). Server request
// apiGetFlutterGAClientId should not happen because the
// isFlutterGAEnabled test should have been false.
_log.warning('$apiGetFlutterGAClientId is empty');
}
} else {
logWarning(resp, apiGetFlutterGAClientId);
}
}
}
return clientId;
}
| devtools/packages/devtools_app/lib/src/shared/server/_analytics_api.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/server/_analytics_api.dart",
"repo_id": "devtools",
"token_count": 1436
} | 144 |
// 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:math';
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 TableRow;
import 'package:flutter/services.dart';
import '../collapsible_mixin.dart';
import '../common_widgets.dart';
import '../primitives/flutter_widgets/linked_scroll_controller.dart';
import '../primitives/trees.dart';
import '../primitives/utils.dart';
import '../ui/search.dart';
import '../ui/utils.dart';
import '../utils.dart';
import 'column_widths.dart';
import 'table_controller.dart';
import 'table_data.dart';
part '_flat_table.dart';
part '_table_column.dart';
part '_table_row.dart';
part '_tree_table.dart';
// TODO(devoncarew): We need to render the selected row with a different
// background color.
typedef IndexedScrollableWidgetBuilder = Widget Function({
required BuildContext context,
required LinkedScrollControllerGroup linkedScrollControllerGroup,
required int index,
required List<double> columnWidths,
required bool isPinned,
required bool enableHoverHandling,
});
typedef TableKeyEventHandler = KeyEventResult Function(
KeyEvent event,
ScrollController scrollController,
BoxConstraints constraints,
);
class Selection<T> {
Selection({
this.node,
this.nodeIndex,
this.nodeIndexCalculator,
this.scrollIntoView = false,
}) : assert(nodeIndex == null || nodeIndexCalculator == null);
Selection.empty()
: node = null,
nodeIndex = null,
nodeIndexCalculator = null,
scrollIntoView = true;
final T? node;
// TODO (carolynqu): get rid of nodeIndex and only use nodeIndexCalculator, https://github.com/flutter/devtools/issues/4266
final int? nodeIndex;
final int? Function(T?)? nodeIndexCalculator;
final bool scrollIntoView;
}
// TODO(kenz): https://github.com/flutter/devtools/issues/1522. The table code
// needs to be refactored to support flexible column widths.
@visibleForTesting
class DevToolsTable<T> extends StatefulWidget {
const DevToolsTable({
Key? key,
required this.tableController,
required this.columnWidths,
required this.rowBuilder,
this.selectionNotifier,
this.focusNode,
this.handleKeyEvent,
this.autoScrollContent = false,
this.preserveVerticalScrollPosition = false,
this.activeSearchMatchNotifier,
this.rowItemExtent,
this.tallHeaders = false,
this.headerColor,
this.fillWithEmptyRows = false,
this.enableHoverHandling = false,
}) : super(key: key);
final TableControllerBase<T> tableController;
final bool autoScrollContent;
final List<double> columnWidths;
final IndexedScrollableWidgetBuilder rowBuilder;
final double? rowItemExtent;
final FocusNode? focusNode;
final TableKeyEventHandler? handleKeyEvent;
final ValueNotifier<Selection<T?>>? selectionNotifier;
final ValueListenable<T?>? activeSearchMatchNotifier;
final bool preserveVerticalScrollPosition;
final bool tallHeaders;
final Color? headerColor;
final bool fillWithEmptyRows;
final bool enableHoverHandling;
@override
DevToolsTableState<T> createState() => DevToolsTableState<T>();
}
@visibleForTesting
class DevToolsTableState<T> extends State<DevToolsTable<T>>
with AutoDisposeMixin {
late LinkedScrollControllerGroup _linkedHorizontalScrollControllerGroup;
late ScrollController scrollController;
late ScrollController pinnedScrollController;
late List<T> _data;
/// An adjusted copy of [widget.columnWidths] where any variable width columns
/// may be increased so that the sum of all column widths equals the available
/// screen space.
///
/// This must be calculated where we have access to the Flutter view
/// constraints (e.g. the [LayoutBuilder] below).
@visibleForTesting
late List<double> adjustedColumnWidths;
@override
void initState() {
super.initState();
_initDataAndAddListeners();
_linkedHorizontalScrollControllerGroup = LinkedScrollControllerGroup();
final initialScrollOffset = widget.preserveVerticalScrollPosition
? widget.tableController.tableUiState.scrollOffset
: 0.0;
widget.tableController.initScrollController(initialScrollOffset);
scrollController = widget.tableController.verticalScrollController!;
pinnedScrollController = ScrollController();
adjustedColumnWidths = List.of(widget.columnWidths);
}
@override
void didUpdateWidget(covariant DevToolsTable<T> oldWidget) {
super.didUpdateWidget(oldWidget);
final notifiersChanged = widget.tableController.tableData !=
oldWidget.tableController.tableData ||
widget.selectionNotifier != oldWidget.selectionNotifier ||
widget.activeSearchMatchNotifier != oldWidget.activeSearchMatchNotifier;
if (notifiersChanged) {
cancelListeners();
_initDataAndAddListeners();
}
adjustedColumnWidths = List.of(widget.columnWidths);
}
void _initDataAndAddListeners() {
_data = widget.tableController.tableData.value.data;
addAutoDisposeListener(widget.tableController.tableData, () {
setState(() {
_data = widget.tableController.tableData.value.data;
});
});
_initScrollOnSelectionListener(widget.selectionNotifier);
_initSearchListener();
}
void _initScrollOnSelectionListener(
ValueNotifier<Selection<T?>>? selectionNotifier,
) {
if (selectionNotifier != null) {
addAutoDisposeListener(selectionNotifier, () {
WidgetsBinding.instance.addPostFrameCallback((_) {
final Selection<T?> selection = selectionNotifier.value;
final T? node = selection.node;
final int? Function(T?)? nodeIndexCalculator =
selection.nodeIndexCalculator;
final int? nodeIndex = selection.nodeIndex;
if (selection.scrollIntoView && node != null) {
final int selectedDisplayRow = nodeIndexCalculator != null
? nodeIndexCalculator(node)!
: nodeIndex!;
final newPos = selectedDisplayRow * defaultRowHeight;
maybeScrollToPosition(scrollController, newPos);
}
});
});
}
}
void _initSearchListener() {
if (widget.activeSearchMatchNotifier != null) {
addAutoDisposeListener(
widget.activeSearchMatchNotifier,
_onActiveSearchChange,
);
}
}
void _onActiveSearchChange() async {
final activeSearch = widget.activeSearchMatchNotifier!.value;
if (activeSearch == null) return;
final index = _data.indexOf(activeSearch);
if (index == -1) return;
final y = index * defaultRowHeight;
final indexInView = y > scrollController.offset &&
y < scrollController.offset + scrollController.position.extentInside;
if (!indexInView) {
await scrollController.animateTo(
index * defaultRowHeight,
duration: defaultDuration,
curve: defaultCurve,
);
}
}
@override
void deactivate() {
if (widget.preserveVerticalScrollPosition) {
widget.tableController.storeScrollPosition();
}
super.deactivate();
}
@override
void dispose() {
widget.tableController.dispose();
pinnedScrollController.dispose();
super.dispose();
}
/// The width of all columns in the table with additional padding.
double get _tableWidthForOriginalColumns {
var tableWidth = 2 * defaultSpacing;
final numColumnGroupSpacers =
widget.tableController.columnGroups?.numSpacers ?? 0;
final numColumnSpacers =
widget.tableController.columns.numSpacers - numColumnGroupSpacers;
tableWidth += numColumnSpacers * columnSpacing;
tableWidth += numColumnGroupSpacers * columnGroupSpacingWithPadding;
for (var columnWidth in widget.columnWidths) {
tableWidth += columnWidth;
}
return tableWidth;
}
/// Modifies [adjustedColumnWidths] so that any available view space greater
/// than [_tableWidthForOriginalColumns] is distributed evenly across variable
/// width columns.
void _adjustColumnWidthsForViewSize(double viewWidth) {
final extraSpace = viewWidth - _tableWidthForOriginalColumns;
if (extraSpace <= 0) {
adjustedColumnWidths = List.of(widget.columnWidths);
return;
}
final adjustedColumnWidthsByIndex = <int, double>{};
/// Helper method to evenly distribute [space] among the columns at
/// [columnIndices].
///
/// This method stores the adjusted width values in
/// [adjustedColumnWidthsByIndex].
void evenlyDistributeColumnSizes(List<int> columnIndices, double space) {
final targetSize = space / columnIndices.length;
var largestColumnIndex = -1;
var largestColumnWidth = 0.0;
for (final index in columnIndices) {
final columnWidth = widget.columnWidths[index];
if (columnWidth >= largestColumnWidth) {
largestColumnIndex = index;
largestColumnWidth = columnWidth;
}
}
if (targetSize < largestColumnWidth) {
// We do not have enough extra space to evenly distribute to all
// columns. Remove the largest column and recurse.
adjustedColumnWidthsByIndex[largestColumnIndex] = largestColumnWidth;
final newColumnIndices = List.of(columnIndices)
..remove(largestColumnIndex);
return evenlyDistributeColumnSizes(
newColumnIndices,
space - largestColumnWidth,
);
}
for (int i = 0; i < columnIndices.length; i++) {
final columnIndex = columnIndices[i];
adjustedColumnWidthsByIndex[columnIndex] = targetSize;
}
}
final variableWidthColumnIndices = <int>[];
var sumVariableWidthColumnSizes = 0.0;
for (int i = 0; i < widget.tableController.columns.length; i++) {
final column = widget.tableController.columns[i];
if (column.fixedWidthPx == null) {
variableWidthColumnIndices.add(i);
sumVariableWidthColumnSizes += widget.columnWidths[i];
}
}
final totalVariableWidthColumnSpace =
sumVariableWidthColumnSizes + extraSpace;
evenlyDistributeColumnSizes(
variableWidthColumnIndices,
totalVariableWidthColumnSpace,
);
adjustedColumnWidths.clear();
for (int i = 0; i < widget.columnWidths.length; i++) {
final originalWidth = widget.columnWidths[i];
final isVariableWidthColumn = variableWidthColumnIndices.contains(i);
adjustedColumnWidths.add(
isVariableWidthColumn ? adjustedColumnWidthsByIndex[i]! : originalWidth,
);
}
}
double _pinnedDataHeight(BoxConstraints tableConstraints) => min(
widget.rowItemExtent! * pinnedData.length,
tableConstraints.maxHeight / 2,
);
int _dataRowCount(
BoxConstraints tableConstraints,
bool showColumnGroupHeader,
) {
if (!widget.fillWithEmptyRows) {
return _data.length;
}
var maxHeight = tableConstraints.maxHeight;
final columnHeadersCount = showColumnGroupHeader ? 2 : 1;
maxHeight -= columnHeadersCount *
(defaultHeaderHeight +
(widget.tallHeaders ? scaleByFontFactor(densePadding) : 0.0));
if (pinnedData.isNotEmpty) {
maxHeight -=
_pinnedDataHeight(tableConstraints) + ThickDivider.thickDividerHeight;
}
return max(_data.length, maxHeight ~/ widget.rowItemExtent!);
}
Widget _buildItem(BuildContext context, int index, {bool isPinned = false}) {
return widget.rowBuilder(
context: context,
linkedScrollControllerGroup: _linkedHorizontalScrollControllerGroup,
index: index,
columnWidths: adjustedColumnWidths,
isPinned: isPinned,
enableHoverHandling: widget.enableHoverHandling,
);
}
List<T> get pinnedData => widget.tableController.pinnedData;
@override
Widget build(BuildContext context) {
// If we're at the end already, scroll to expose the new content.
if (widget.autoScrollContent) {
if (scrollController.hasClients && scrollController.atScrollBottom) {
unawaited(scrollController.autoScrollToBottom());
}
}
final columnGroups = widget.tableController.columnGroups;
final includeColumnGroupHeaders =
widget.tableController.includeColumnGroupHeaders;
final showColumnGroupHeader = columnGroups != null &&
columnGroups.isNotEmpty &&
includeColumnGroupHeaders;
final tableUiState = widget.tableController.tableUiState;
final sortColumn =
widget.tableController.columns[tableUiState.sortColumnIndex];
if (widget.preserveVerticalScrollPosition && scrollController.hasClients) {
scrollController.jumpTo(tableUiState.scrollOffset);
}
// TODO(kenz): add horizontal scrollbar.
return LayoutBuilder(
builder: (context, constraints) {
final viewWidth = constraints.maxWidth;
_adjustColumnWidthsForViewSize(viewWidth);
return SelectionArea(
child: SizedBox(
width: max(viewWidth, _tableWidthForOriginalColumns),
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
if (showColumnGroupHeader)
TableRow<T>.tableColumnGroupHeader(
linkedScrollControllerGroup:
_linkedHorizontalScrollControllerGroup,
columnGroups: columnGroups,
columnWidths: adjustedColumnWidths,
sortColumn: sortColumn,
sortDirection: tableUiState.sortDirection,
secondarySortColumn:
widget.tableController.secondarySortColumn,
onSortChanged: widget.tableController.sortDataAndNotify,
tall: widget.tallHeaders,
backgroundColor: widget.headerColor,
),
TableRow<T>.tableColumnHeader(
key: const Key('Table header'),
linkedScrollControllerGroup:
_linkedHorizontalScrollControllerGroup,
columns: widget.tableController.columns,
columnGroups: columnGroups,
columnWidths: adjustedColumnWidths,
sortColumn: sortColumn,
sortDirection: tableUiState.sortDirection,
secondarySortColumn:
widget.tableController.secondarySortColumn,
onSortChanged: widget.tableController.sortDataAndNotify,
tall: widget.tallHeaders,
backgroundColor: widget.headerColor,
),
if (pinnedData.isNotEmpty) ...[
SizedBox(
height: _pinnedDataHeight(constraints),
child: Scrollbar(
thumbVisibility: true,
controller: pinnedScrollController,
child: ListView.builder(
controller: pinnedScrollController,
itemCount: pinnedData.length,
itemExtent: widget.rowItemExtent,
itemBuilder: (context, index) => _buildItem(
context,
index,
isPinned: true,
),
),
),
),
const ThickDivider(),
],
Expanded(
child: Scrollbar(
thumbVisibility: true,
controller: scrollController,
child: GestureDetector(
behavior: HitTestBehavior.translucent,
onTapDown: (a) => widget.focusNode?.requestFocus(),
child: Focus(
autofocus: true,
onKeyEvent: (_, event) => widget.handleKeyEvent != null
? widget.handleKeyEvent!(
event,
scrollController,
constraints,
)
: KeyEventResult.ignored,
focusNode: widget.focusNode,
child: ListView.builder(
controller: scrollController,
itemCount:
_dataRowCount(constraints, showColumnGroupHeader),
itemExtent: widget.rowItemExtent,
itemBuilder: _buildItem,
),
),
),
),
),
],
),
),
);
},
);
}
}
| devtools/packages/devtools_app/lib/src/shared/table/table.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/table/table.dart",
"repo_id": "devtools",
"token_count": 6880
} | 145 |
// 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:collection/collection.dart';
import 'package:vm_service/vm_service.dart';
import 'globals.dart';
import 'memory/class_name.dart';
bool isPrimitiveInstanceKind(String? kind) {
return kind == InstanceKind.kBool ||
kind == InstanceKind.kDouble ||
kind == InstanceKind.kInt ||
kind == InstanceKind.kNull ||
kind == InstanceKind.kString;
}
Future<ClassRef?> findClass(String? isolateId, HeapClassName className) async {
if (isolateId == null) return null;
final service = serviceConnection.serviceManager.service;
if (service == null) return null;
final classes = await service.getClassList(isolateId);
return classes.classes?.firstWhere((ref) => className.matches(ref));
}
/// Finds instance in isolate by class and identityHashCode.
Future<InstanceRef?> findInstance(
String? isolateId,
String? classId,
int? hashCode,
) async {
if (classId == null ||
isolateId == null ||
hashCode == null ||
hashCode == 0) {
return null;
}
final result = (await serviceConnection.serviceManager.service!.getInstances(
isolateId,
classId,
preferences.memory.refLimit.value,
))
.instances
?.firstWhereOrNull(
(instance) =>
(instance is InstanceRef) &&
(instance.identityHashCode == hashCode),
);
if (result is InstanceRef) return result;
return null;
}
| devtools/packages/devtools_app/lib/src/shared/vm_utils.dart/0 | {
"file_path": "devtools/packages/devtools_app/lib/src/shared/vm_utils.dart",
"repo_id": "devtools",
"token_count": 541
} | 146 |
// 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/devtools_app.dart';
import 'package:devtools_app/src/screens/profiler/cpu_profiler_controller.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_test/flutter_test.dart';
import 'package:mockito/mockito.dart';
import 'package:vm_service/vm_service.dart';
import '../test_infra/test_data/cpu_profiler/cpu_profile.dart';
void main() {
late ServiceConnectionManager fakeServiceManager;
setUp(() {
fakeServiceManager = FakeServiceConnectionManager(
service: FakeServiceManager.createFakeService(
cpuSamples: CpuSamples.parse(goldenCpuSamplesJson),
resolvedUriMap: goldenResolvedUriMap,
),
);
final app = fakeServiceManager.serviceManager.connectedApp!;
when(app.isFlutterAppNow).thenReturn(true);
});
group('CpuProfileController', () {
late CpuProfilerController controller;
Future<void> disableAllFiltering() async {
for (final filter in controller.activeFilter.value.toggleFilters) {
filter.enabled.value = false;
}
controller.setActiveFilter();
// [CpuProfilerController.filterData], which is triggered by the call to
// [setActiveFilter] via a listener callback, calls an unawaited future.
// We await a short delay here to ensure that that future completes.
await shortDelay();
}
setUp(() {
setGlobal(
DevToolsEnvironmentParameters,
ExternalDevToolsEnvironmentParameters(),
);
setGlobal(ServiceConnectionManager, fakeServiceManager);
setGlobal(OfflineModeController, OfflineModeController());
setGlobal(PreferencesController, PreferencesController());
controller = CpuProfilerController();
controller.useRegExp.value = false;
});
Future<void> pullProfileAndSelectFrame() async {
await controller.pullAndProcessProfile(
startMicros: 0,
extentMicros: 100,
processId: 'test',
);
controller.selectCpuStackFrame(testStackFrame);
expect(
controller.dataNotifier.value,
isNot(equals(CpuProfilerController.baseStateCpuProfileData)),
);
expect(
controller.selectedCpuStackFrameNotifier.value,
equals(testStackFrame),
);
}
test('pullAndProcessProfile', () async {
expect(
controller.dataNotifier.value,
equals(CpuProfilerController.baseStateCpuProfileData),
);
expect(controller.profilerBusyStatus.value, CpuProfilerBusyStatus.none);
// [startMicros] and [extentMicros] are arbitrary for testing.
await controller.pullAndProcessProfile(
startMicros: 0,
extentMicros: 100,
processId: 'test',
);
expect(
controller.dataNotifier.value !=
CpuProfilerController.baseStateCpuProfileData,
isTrue,
);
expect(controller.profilerBusyStatus.value, CpuProfilerBusyStatus.none);
await controller.clear();
expect(
controller.dataNotifier.value,
equals(CpuProfilerController.baseStateCpuProfileData),
);
});
test('loads filtered data by default', () async {
// [startMicros] and [extentMicros] are arbitrary for testing.
await controller.pullAndProcessProfile(
startMicros: 0,
extentMicros: 100,
processId: 'test',
);
final originalData = controller.cpuProfileStore.lookupProfile(
label: CpuProfilerController.userTagNone,
)!;
expect(
originalData.functionProfile.stackFrames.values.length,
equals(17),
);
final filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values.length, equals(12));
// The native frame filter is applied by default.
final originalNativeFrames = originalData
.functionProfile.stackFrames.values
.where((sf) => sf.isNative)
.toList();
final filteredNativeFrames =
filteredData.stackFrames.values.where((sf) => sf.isNative).toList();
expect(originalNativeFrames.length, equals(5));
expect(filteredNativeFrames, isEmpty);
});
test('filters data by query filter', () async {
// [startMicros] and [extentMicros] are arbitrary for testing.
await controller.pullAndProcessProfile(
startMicros: 0,
extentMicros: 100,
processId: 'test',
);
final originalData = controller.cpuProfileStore.lookupProfile(
label: CpuProfilerController.userTagNone,
)!;
expect(
originalData.functionProfile.stackFrames.values.length,
equals(17),
);
// At this point, data is filtered by the default toggle filter values.
var filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values.length, equals(12));
// [CpuProfilerController.filterData], which is triggered by the call to
// [setActiveFilter] via a listener callback, calls an unawaited future.
// We await a short delay here and below to ensure that that future
// completes.
controller.setActiveFilter(query: 'uri:dart:vm');
await shortDelay();
filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values.length, equals(3));
controller.setActiveFilter(query: 'render uri:dart:vm');
await shortDelay();
filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values.length, equals(2));
controller.setActiveFilter(query: 'abcdefg some bogus value');
await shortDelay();
filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values.length, equals(0));
// 'thread' events are excluded because Native frames are hidden by
// default.
controller.setActiveFilter(query: 'paint thread');
await shortDelay();
filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values.length, equals(7));
for (final filter in controller.activeFilter.value.toggleFilters) {
filter.enabled.value = false;
}
controller.setActiveFilter(query: 'paint thread');
await shortDelay();
filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values.length, equals(9));
});
test('filters data by regexp query filter', () async {
// [startMicros] and [extentMicros] are arbitrary for testing.
await controller.pullAndProcessProfile(
startMicros: 0,
extentMicros: 100,
processId: 'test',
);
final originalData = controller.cpuProfileStore.lookupProfile(
label: CpuProfilerController.userTagNone,
)!;
expect(
originalData.functionProfile.stackFrames.values.length,
equals(17),
);
controller.useRegExp.value = true;
// At this point, data is filtered by the default toggle filter values.
var filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values.length, equals(12));
// [CpuProfilerController.filterData], which is triggered by the call to
// [setActiveFilter] via a listener callback, calls an unawaited future.
// We await a short delay here and below to ensure that that future
// completes.
controller.setActiveFilter(query: 'render');
await shortDelay();
filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values.length, equals(9));
controller.setActiveFilter(query: 'render.*parent');
await shortDelay();
filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values.length, equals(2));
controller.setActiveFilter(query: 'render.*paint');
await shortDelay();
filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values.length, equals(6));
// Disable regexp filters and verify filter behavior changes.
controller.useRegExp.value = false;
controller.setActiveFilter(query: 'render');
await shortDelay();
filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values.length, equals(9));
controller.setActiveFilter(query: 'render.*parent');
await shortDelay();
filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values, isEmpty);
controller.setActiveFilter(query: 'render.*paint');
await shortDelay();
filteredData = controller.dataNotifier.value!;
expect(filteredData.stackFrames.values, isEmpty);
});
test('selectCpuStackFrame', () async {
final dataNotifierValue = controller.dataNotifier.value!;
expect(
dataNotifierValue.selectedStackFrame,
isNull,
);
expect(controller.selectedCpuStackFrameNotifier.value, isNull);
controller.selectCpuStackFrame(testStackFrame);
expect(
dataNotifierValue.selectedStackFrame,
equals(testStackFrame),
);
expect(
controller.selectedCpuStackFrameNotifier.value,
equals(testStackFrame),
);
await controller.clear();
expect(controller.selectedCpuStackFrameNotifier.value, isNull);
});
test('matchesForSearch', () async {
await disableAllFiltering();
// [startMicros] and [extentMicros] are arbitrary for testing.
await controller.pullAndProcessProfile(
startMicros: 0,
extentMicros: 100,
processId: 'test',
);
expect(
controller.dataNotifier.value!.stackFrames.values.length,
equals(17),
);
// Match on name.
expect(controller.matchesForSearch('').length, equals(0));
expect(controller.matchesForSearch('render').length, equals(9));
expect(controller.matchesForSearch('RenderObject').length, equals(3));
expect(controller.matchesForSearch('THREAD').length, equals(2));
expect(controller.matchesForSearch('paint').length, equals(7));
// Match on url.
expect(controller.matchesForSearch('rendering/').length, equals(7));
expect(controller.matchesForSearch('proxy_box.dart').length, equals(1));
expect(controller.matchesForSearch('dart:').length, equals(3));
// Match with RegExp.
expect(
controller.matchesForSearch('rendering/.*.dart').length,
equals(7),
);
expect(controller.matchesForSearch('RENDER.*.paint').length, equals(6));
});
test('matchesForSearch sets isSearchMatch property', () async {
await disableAllFiltering();
// [startMicros] and [extentMicros] are arbitrary for testing.
await controller.pullAndProcessProfile(
startMicros: 0,
extentMicros: 100,
processId: 'test',
);
final dataNotifierValue = controller.dataNotifier.value!;
expect(dataNotifierValue.stackFrames.values.length, equals(17));
controller.search = 'render';
var matches = controller.searchMatches.value;
verifyIsSearchMatchForTreeData(
dataNotifierValue.stackFrames.values.toList(),
matches,
);
controller.search = 'THREAD';
matches = controller.searchMatches.value;
verifyIsSearchMatchForTreeData(
dataNotifierValue.stackFrames.values.toList(),
matches,
);
});
test('processDataForTag', () async {
await disableAllFiltering();
final cpuProfileDataWithTags =
CpuProfileData.parse(cpuProfileDataWithUserTagsJson);
await controller.transformer.processData(
cpuProfileDataWithTags,
processId: 'test',
);
controller.loadProcessedData(
CpuProfilePair(
functionProfile: cpuProfileDataWithTags,
codeProfile: null,
),
storeAsUserTagNone: true,
);
final dataNotifierValue = controller.dataNotifier.value!;
expect(
dataNotifierValue
.cpuProfileRoot.profileMetaData.time!.duration.inMicroseconds,
equals(250),
);
expect(
dataNotifierValue.cpuProfileRoot.profileAsString(),
equals(
'''
all - children: 1 - excl: 0 - incl: 5
Frame1 - children: 2 - excl: 0 - incl: 5
Frame2 - children: 2 - excl: 0 - incl: 2
Frame3 - children: 0 - excl: 1 - incl: 1
Frame4 - children: 0 - excl: 1 - incl: 1
Frame5 - children: 1 - excl: 2 - incl: 3
Frame6 - children: 0 - excl: 1 - incl: 1
''',
),
);
await controller.loadDataWithTag('userTagA');
expect(
controller.dataNotifier.value!.cpuProfileRoot.profileAsString(),
equals(
'''
all - children: 1 - excl: 0 - incl: 2
Frame1 - children: 2 - excl: 0 - incl: 2
Frame2 - children: 1 - excl: 0 - incl: 1
Frame3 - children: 0 - excl: 1 - incl: 1
Frame5 - children: 0 - excl: 1 - incl: 1
''',
),
);
await controller.loadDataWithTag('userTagB');
expect(
controller.dataNotifier.value!.cpuProfileRoot.profileAsString(),
equals(
'''
all - children: 1 - excl: 0 - incl: 1
Frame1 - children: 1 - excl: 0 - incl: 1
Frame2 - children: 1 - excl: 0 - incl: 1
Frame4 - children: 0 - excl: 1 - incl: 1
''',
),
);
await controller.loadDataWithTag('userTagC');
expect(
controller.dataNotifier.value!.cpuProfileRoot.profileAsString(),
equals(
'''
all - children: 1 - excl: 0 - incl: 2
Frame1 - children: 1 - excl: 0 - incl: 2
Frame5 - children: 1 - excl: 1 - incl: 2
Frame6 - children: 0 - excl: 1 - incl: 1
''',
),
);
await controller.loadDataWithTag(CpuProfilerController.groupByUserTag);
expect(
controller.dataNotifier.value!.cpuProfileRoot.profileAsString(),
profileGroupedByUserTagsGolden,
);
await controller.loadDataWithTag(CpuProfilerController.groupByVmTag);
expect(
controller.dataNotifier.value!.cpuProfileRoot.profileAsString(),
profileGroupedByVmTagsGolden,
);
});
test('processDataForTag applies toggle filters by default', () async {
expect(
controller.activeFilter.value.toggleFilters[0].enabled.value,
isTrue,
);
final cpuProfileDataWithTags =
CpuProfileData.parse(cpuProfileDataWithUserTagsJson);
await controller.transformer.processData(
cpuProfileDataWithTags,
processId: 'test',
);
controller.loadProcessedData(
CpuProfilePair(
functionProfile: cpuProfileDataWithTags,
codeProfile: null,
),
storeAsUserTagNone: true,
);
final cpuProfileRoot = controller.dataNotifier.value!.cpuProfileRoot;
expect(
cpuProfileRoot.profileMetaData.time!.duration.inMicroseconds,
equals(250),
);
expect(
cpuProfileRoot.profileAsString(),
equals(
'''
all - children: 1 - excl: 0 - incl: 5
Frame1 - children: 2 - excl: 0 - incl: 5
Frame2 - children: 2 - excl: 0 - incl: 2
Frame3 - children: 0 - excl: 1 - incl: 1
Frame4 - children: 0 - excl: 1 - incl: 1
Frame5 - children: 1 - excl: 2 - incl: 3
Frame6 - children: 0 - excl: 1 - incl: 1
''',
),
);
await controller.loadDataWithTag('userTagA');
expect(
controller.dataNotifier.value!.cpuProfileRoot.profileAsString(),
equals(
'''
all - children: 2 - excl: 0 - incl: 2
Frame2 - children: 0 - excl: 1 - incl: 1
Frame5 - children: 0 - excl: 1 - incl: 1
''',
),
);
await controller.loadDataWithTag('userTagB');
expect(
controller.dataNotifier.value!.cpuProfileRoot.profileAsString(),
equals(
'''
all - children: 1 - excl: 0 - incl: 1
Frame2 - children: 0 - excl: 1 - incl: 1
''',
),
);
await controller.loadDataWithTag('userTagC');
expect(
controller.dataNotifier.value!.cpuProfileRoot.profileAsString(),
equals(
'''
all - children: 1 - excl: 0 - incl: 2
Frame5 - children: 1 - excl: 1 - incl: 2
Frame6 - children: 0 - excl: 1 - incl: 1
''',
),
);
await controller.loadDataWithTag(CpuProfilerController.groupByUserTag);
expect(
controller.dataNotifier.value!.cpuProfileRoot.profileAsString(),
equals(
'''
all - children: 3 - excl: 0 - incl: 5
userTagA - children: 2 - excl: 0 - incl: 2
Frame2 - children: 0 - excl: 1 - incl: 1
Frame5 - children: 0 - excl: 1 - incl: 1
userTagB - children: 1 - excl: 0 - incl: 1
Frame2 - children: 0 - excl: 1 - incl: 1
userTagC - children: 1 - excl: 0 - incl: 2
Frame5 - children: 1 - excl: 1 - incl: 2
Frame6 - children: 0 - excl: 1 - incl: 1
''',
),
);
await controller.loadDataWithTag(CpuProfilerController.groupByVmTag);
expect(
controller.dataNotifier.value!.cpuProfileRoot.profileAsString(),
equals(
'''
all - children: 3 - excl: 0 - incl: 5
vmTagA - children: 2 - excl: 0 - incl: 2
Frame2 - children: 0 - excl: 1 - incl: 1
Frame5 - children: 0 - excl: 1 - incl: 1
vmTagB - children: 1 - excl: 0 - incl: 1
Frame2 - children: 0 - excl: 1 - incl: 1
vmTagC - children: 1 - excl: 0 - incl: 2
Frame5 - children: 1 - excl: 1 - incl: 2
Frame6 - children: 0 - excl: 1 - incl: 1
''',
),
);
});
test('reset', () async {
await pullProfileAndSelectFrame();
controller.reset();
expect(
controller.dataNotifier.value,
equals(CpuProfilerController.baseStateCpuProfileData),
);
expect(controller.selectedCpuStackFrameNotifier.value, isNull);
expect(controller.profilerBusyStatus.value, CpuProfilerBusyStatus.none);
});
test('disposes', () {
controller.dispose();
expect(
() {
controller.dataNotifier.addListener(() {});
},
throwsA(anything),
);
expect(
() {
controller.selectedCpuStackFrameNotifier.addListener(() {});
},
throwsA(anything),
);
expect(
() {
controller.profilerBusyStatus.addListener(() {});
},
throwsA(anything),
);
});
});
}
| devtools/packages/devtools_app/test/cpu_profiler/cpu_profiler_controller_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/cpu_profiler/cpu_profiler_controller_test.dart",
"repo_id": "devtools",
"token_count": 7450
} | 147 |
// 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/devtools_app.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';
void main() {
const windowSize = Size(4000.0, 4000.0);
final mockBreakpointManager = MockBreakpointManager();
final fakeServiceConnection = FakeServiceConnectionManager();
final 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, mockBreakpointManager);
setGlobal(
DevToolsEnvironmentParameters,
ExternalDevToolsEnvironmentParameters(),
);
setGlobal(PreferencesController, PreferencesController());
fakeServiceConnection.consoleService.ensureServiceInitialized();
when(fakeServiceConnection.errorBadgeManager.errorCountNotifier('debugger'))
.thenReturn(ValueNotifier<int>(0));
final debuggerController = createMockDebuggerControllerWithDefaults();
final breakpoints = [
Breakpoint(
breakpointNumber: 1,
id: 'bp1',
resolved: false,
location: UnresolvedSourceLocation(
scriptUri: 'package:test/script.dart',
line: 10,
),
enabled: true,
),
];
final breakpointsWithLocation = [
BreakpointAndSourcePosition.create(
breakpoints.first,
const SourcePosition(line: 10, column: 1),
),
];
final codeViewController = debuggerController.codeViewController;
when(mockBreakpointManager.breakpoints)
.thenReturn(ValueNotifier(breakpoints));
when(mockBreakpointManager.breakpointsWithLocation)
.thenReturn(ValueNotifier(breakpointsWithLocation));
when(scriptManager.sortedScripts).thenReturn(ValueNotifier([]));
when(codeViewController.scriptLocation).thenReturn(ValueNotifier(null));
when(codeViewController.showFileOpener).thenReturn(ValueNotifier(false));
Future<void> pumpDebuggerScreen(
WidgetTester tester,
DebuggerController controller,
) async {
await tester.pumpWidget(
wrapWithControllers(
const DebuggerWindows(),
debugger: controller,
),
);
}
testWidgetsWithWindowSize(
'Breakpoints show items',
windowSize,
(WidgetTester tester) async {
await pumpDebuggerScreen(tester, debuggerController);
expect(find.text('Breakpoints'), findsOneWidget);
// test for items in the breakpoint list
expect(
find.byWidgetPredicate(
(Widget widget) =>
widget is RichText &&
widget.text.toPlainText().contains('script.dart:10'),
),
findsOneWidget,
);
},
);
}
| devtools/packages/devtools_app/test/debugger/debugger_screen_breakpoints_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/debugger/debugger_screen_breakpoints_test.dart",
"repo_id": "devtools",
"token_count": 1165
} | 148 |
// 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/extensions/embedded/view.dart';
import 'package:devtools_app/src/extensions/extension_screen.dart';
import 'package:devtools_app/src/extensions/extension_screen_controls.dart';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:devtools_shared/devtools_extensions.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 '../test_infra/test_data/extensions.dart';
void main() {
const windowSize = Size(2000.0, 2000.0);
group('$ExtensionScreen', () {
late ExtensionScreen fooScreen;
late ExtensionScreen barScreen;
late ExtensionScreen providerScreen;
setUp(() async {
setGlobal(IdeTheme, IdeTheme());
setGlobal(PreferencesController, PreferencesController());
setGlobal(ServiceConnectionManager, ServiceConnectionManager());
fooScreen = ExtensionScreen(fooExtension);
barScreen = ExtensionScreen(barExtension);
providerScreen = ExtensionScreen(providerExtension);
setGlobal(
ExtensionService,
await createMockExtensionServiceWithDefaults(testExtensions),
);
});
testWidgets('builds its tab', (WidgetTester tester) async {
await tester.pumpWidget(wrap(Builder(builder: fooScreen.buildTab)));
expect(find.text('foo'), findsOneWidget);
expect(find.byIcon(fooExtension.icon), findsOneWidget);
await tester.pumpWidget(wrap(Builder(builder: barScreen.buildTab)));
expect(find.text('bar'), findsOneWidget);
expect(find.byIcon(barExtension.icon), findsOneWidget);
await tester.pumpWidget(wrap(Builder(builder: providerScreen.buildTab)));
expect(find.text('provider'), findsOneWidget);
expect(find.byIcon(providerExtension.icon), findsOneWidget);
});
testWidgetsWithWindowSize(
'renders for unactivated state',
windowSize,
(tester) async {
await tester.pumpWidget(wrap(Builder(builder: fooScreen.build)));
expect(find.byType(ExtensionView), findsOneWidget);
expect(find.byType(EmbeddedExtensionHeader), findsOneWidget);
expect(
find.richTextContaining('package:foo extension'),
findsOneWidget,
);
expect(find.richTextContaining('(v1.0.0)'), findsOneWidget);
expect(find.richTextContaining('Report an issue'), findsOneWidget);
expect(_extensionContextMenuFinder, findsNothing);
expect(find.byType(EnableExtensionPrompt), findsOneWidget);
expect(find.byType(EmbeddedExtensionView), findsNothing);
await tester.pumpWidget(wrap(Builder(builder: barScreen.build)));
expect(find.byType(ExtensionView), findsOneWidget);
expect(find.byType(EmbeddedExtensionHeader), findsOneWidget);
expect(
find.richTextContaining('package:bar extension'),
findsOneWidget,
);
expect(find.richTextContaining('(v2.0.0)'), findsOneWidget);
expect(find.richTextContaining('Report an issue'), findsOneWidget);
expect(_extensionContextMenuFinder, findsNothing);
expect(find.byType(EnableExtensionPrompt), findsOneWidget);
expect(find.byType(EmbeddedExtensionView), findsNothing);
await tester.pumpWidget(wrap(Builder(builder: providerScreen.build)));
expect(find.byType(ExtensionView), findsOneWidget);
expect(find.byType(EmbeddedExtensionHeader), findsOneWidget);
expect(
find.richTextContaining('package:provider extension'),
findsOneWidget,
);
expect(find.richTextContaining('(v3.0.0)'), findsOneWidget);
expect(find.richTextContaining('Report an issue'), findsOneWidget);
expect(_extensionContextMenuFinder, findsNothing);
expect(find.byType(EnableExtensionPrompt), findsOneWidget);
expect(find.byType(EmbeddedExtensionView), findsNothing);
},
);
testWidgetsWithWindowSize(
'renders for enabled state',
windowSize,
(tester) async {
await extensionService.setExtensionEnabledState(
fooExtension,
enable: true,
);
await tester.pumpWidget(wrap(Builder(builder: fooScreen.build)));
expect(find.byType(ExtensionView), findsOneWidget);
expect(find.byType(EmbeddedExtensionHeader), findsOneWidget);
expect(
find.richTextContaining('package:foo extension'),
findsOneWidget,
);
expect(find.richTextContaining('(v1.0.0)'), findsOneWidget);
expect(find.richTextContaining('Report an issue'), findsOneWidget);
await _verifyContextMenuContents(tester);
expect(find.byType(EnableExtensionPrompt), findsNothing);
expect(find.byType(EmbeddedExtensionView), findsOneWidget);
},
);
testWidgetsWithWindowSize(
'renders for disabled state',
windowSize,
(tester) async {
await extensionService.setExtensionEnabledState(
fooExtension,
enable: false,
);
await tester.pumpWidget(wrap(Builder(builder: fooScreen.build)));
expect(find.byType(ExtensionView), findsOneWidget);
expect(find.byType(EmbeddedExtensionHeader), findsOneWidget);
expect(
find.richTextContaining('package:foo extension'),
findsOneWidget,
);
expect(find.richTextContaining('(v1.0.0)'), findsOneWidget);
expect(find.richTextContaining('Report an issue'), findsOneWidget);
expect(_extensionContextMenuFinder, findsNothing);
expect(find.byType(EnableExtensionPrompt), findsOneWidget);
expect(find.byType(EmbeddedExtensionView), findsNothing);
},
);
testWidgetsWithWindowSize(
'can enable and disable extension from screen',
windowSize,
(tester) async {
await tester.pumpWidget(wrap(Builder(builder: fooScreen.build)));
expect(
extensionService.enabledStateListenable(fooExtension.name).value,
ExtensionEnabledState.none,
);
expect(find.byType(EnableExtensionPrompt), findsOneWidget);
expect(find.byType(EmbeddedExtensionView), findsNothing);
expect(_extensionContextMenuFinder, findsNothing);
await tester.tap(
find.descendant(
of: find.byType(GaDevToolsButton),
matching: find.text('Enable'),
),
);
await tester.pumpAndSettle();
expect(
extensionService.enabledStateListenable(fooExtension.name).value,
ExtensionEnabledState.enabled,
);
expect(find.byType(EnableExtensionPrompt), findsNothing);
expect(find.byType(EmbeddedExtensionView), findsOneWidget);
await _verifyContextMenuContents(
tester,
autoDismiss: false,
);
await tester.tap(find.text('Disable extension'));
await tester.pumpAndSettle();
expect(find.byType(DisableExtensionDialog), findsOneWidget);
await tester.tap(find.text('YES, DISABLE'));
await tester.pumpAndSettle();
expect(
extensionService.enabledStateListenable(fooExtension.name).value,
ExtensionEnabledState.disabled,
);
expect(find.byType(EnableExtensionPrompt), findsOneWidget);
expect(find.byType(EmbeddedExtensionView), findsNothing);
expect(_extensionContextMenuFinder, findsNothing);
},
);
});
}
Future<void> _verifyContextMenuContents(
WidgetTester tester, {
bool autoDismiss = true,
}) async {
expect(_extensionContextMenuFinder, findsOneWidget);
await tester.tap(_extensionContextMenuFinder);
await tester.pumpAndSettle();
expect(find.text('Disable extension'), findsOneWidget);
expect(find.text('Force reload extension'), findsOneWidget);
if (autoDismiss) {
// Tap the context menu again to dismiss it.
await tester.tap(_extensionContextMenuFinder);
await tester.pumpAndSettle();
}
}
Finder get _extensionContextMenuFinder => find.descendant(
of: find.byType(EmbeddedExtensionHeader),
matching: find.byType(ContextMenuButton),
);
| devtools/packages/devtools_app/test/extensions/extension_screen_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/extensions/extension_screen_test.dart",
"repo_id": "devtools",
"token_count": 3254
} | 149 |
// 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 'package:ansicolor/ansicolor.dart';
import 'package:devtools_app/devtools_app.dart';
import 'package:devtools_app/src/screens/logging/_log_details.dart';
import 'package:devtools_app/src/screens/logging/_logs_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';
void main() {
late MockLoggingController mockLoggingController;
const windowSize = Size(1000.0, 1000.0);
final fakeServiceConnection = FakeServiceConnectionManager();
Future<void> pumpLoggingScreen(WidgetTester tester) async {
await tester.pumpWidget(
wrapWithControllers(
const LoggingScreenBody(),
logging: mockLoggingController,
),
);
}
setUp(() {
mockLoggingController =
createMockLoggingControllerWithDefaults(data: fakeLogData);
when(fakeServiceConnection.serviceManager.connectedApp!.isFlutterWebAppNow)
.thenReturn(false);
when(fakeServiceConnection.serviceManager.connectedApp!.isProfileBuildNow)
.thenReturn(false);
when(fakeServiceConnection.errorBadgeManager.errorCountNotifier('logging'))
.thenReturn(ValueNotifier<int>(0));
setGlobal(ServiceConnectionManager, fakeServiceConnection);
setGlobal(NotificationService, NotificationService());
setGlobal(
DevToolsEnvironmentParameters,
ExternalDevToolsEnvironmentParameters(),
);
setGlobal(PreferencesController, PreferencesController());
setGlobal(IdeTheme, IdeTheme());
});
testWidgetsWithWindowSize(
'shows log items',
windowSize,
(WidgetTester tester) async {
await pumpLoggingScreen(tester);
await tester.pumpAndSettle();
expect(find.byType(LogsTable), findsOneWidget);
expect(
find.byKey(ValueKey(fakeLogData.first)),
findsOneWidget,
);
expect(
find.byKey(ValueKey(fakeLogData.last)),
findsOneWidget,
);
},
);
testWidgetsWithWindowSize(
'can show non-computing log data',
windowSize,
(WidgetTester tester) async {
await pumpLoggingScreen(tester);
await tester.pumpAndSettle();
await tester.tap(find.byKey(ValueKey(fakeLogData[6])));
await tester.pumpAndSettle();
expect(
find.selectableText('log event 6'),
findsOneWidget,
reason:
'The log details should be visible both in the details section.',
);
expect(
find.selectableText('log event 6'),
findsOneWidget,
reason: 'The log details should be visible both in the table.',
);
},
);
testWidgetsWithWindowSize(
'can show null log data',
windowSize,
(WidgetTester tester) async {
await pumpLoggingScreen(tester);
await tester.pumpAndSettle();
await tester.tap(find.byKey(ValueKey(fakeLogData[7])));
await tester.pumpAndSettle();
},
);
testWidgetsWithWindowSize(
'search field can enter text',
windowSize,
(WidgetTester tester) async {
await pumpLoggingScreen(tester);
verifyNever(mockLoggingController.clear());
final textFieldFinder = find.byType(TextField);
expect(textFieldFinder, findsOneWidget);
final TextField textField = tester.widget(textFieldFinder) as TextField;
expect(textField.enabled, isTrue);
await tester.enterText(find.byType(TextField), 'abc');
},
);
testWidgetsWithWindowSize(
'Copy to clipboard button enables/disables correctly',
windowSize,
(WidgetTester tester) async {
await pumpLoggingScreen(tester);
// Locates the copy to clipboard button's IconButton.
ToolbarAction copyButton() => find
.byKey(LogDetails.copyToClipboardButtonKey)
.evaluate()
.first
.widget as ToolbarAction;
expect(
copyButton().onPressed,
isNull,
reason:
'Copy to clipboard button should be disabled when no logs are selected',
);
await tester.tap(find.byKey(ValueKey(fakeLogData[5])));
await tester.pumpAndSettle();
expect(
copyButton().onPressed,
isNotNull,
reason:
'Copy to clipboard button should be enabled when a log with content is selected',
);
await tester.tap(find.byKey(ValueKey(fakeLogData[7])));
await tester.pumpAndSettle();
expect(
copyButton().onPressed,
isNull,
reason:
'Copy to clipboard button should be disabled when the log details are null',
);
},
);
testWidgetsWithWindowSize(
'can compute details of non-json log data',
windowSize,
(WidgetTester tester) async {
const index = 8;
final log = fakeLogData[index];
await pumpLoggingScreen(tester);
await tester.pumpAndSettle();
await tester.tap(find.byKey(ValueKey(log)));
await tester.pump();
expect(
find.selectableText(nonJsonOutput),
findsNothing,
reason:
"The details of the log haven't computed yet, so they shouldn't "
'be available.',
);
await tester.pumpAndSettle();
expect(find.selectableText(nonJsonOutput), findsOneWidget);
},
);
testWidgetsWithWindowSize(
'can show details of json log data',
windowSize,
(WidgetTester tester) async {
const index = 9;
bool containsJson(Widget widget) {
if (widget is! SelectableText) return false;
final content = widget.data!.trim();
return content.startsWith('{') && content.endsWith('}');
}
final findJson = find.descendant(
of: find.byType(LogDetails),
matching: find.byWidgetPredicate(containsJson),
);
await pumpLoggingScreen(tester);
await tester.pumpAndSettle();
await tester.tap(find.byKey(ValueKey(fakeLogData[index])));
await tester.pump();
expect(
findJson,
findsNothing,
reason:
"The details of the log haven't computed yet, so they shouldn't be available.",
);
await tester.pumpAndSettle();
expect(findJson, findsOneWidget);
},
);
}
const totalLogs = 10;
final fakeLogData = List<LogData>.generate(totalLogs, _generate);
LogData _generate(int i) {
String? details = 'log event $i';
String kind = 'kind $i';
String? computedDetails;
switch (i) {
case 9:
computedDetails = jsonOutput;
break;
case 8:
computedDetails = nonJsonOutput;
break;
case 7:
details = null;
break;
case 5:
kind = 'stdout';
details = _ansiCodesOutput();
break;
default:
break;
}
final detailsComputer = computedDetails == null
? null
: () =>
Future.delayed(const Duration(seconds: 1), () => computedDetails!);
return LogData(kind, details, i, detailsComputer: detailsComputer);
}
const nonJsonOutput = 'Non-json details for log number 8';
const jsonOutput = '{\n"Details": "of log event 9",\n"logEvent": "9"\n}\n';
String _ansiCodesOutput() {
final sb = StringBuffer();
sb.write('Ansi color codes processed for ');
final pen = AnsiPen()..rgb(r: 0.8, g: 0.3, b: 0.4, bg: true);
sb.write(pen('log 5'));
return sb.toString();
}
| devtools/packages/devtools_app/test/logging/logging_screen_data_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/logging/logging_screen_data_test.dart",
"repo_id": "devtools",
"token_count": 3020
} | 150 |
// 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/heap.dart';
import 'package:devtools_app/src/shared/memory/adapted_heap_data.dart';
import 'package:devtools_app/src/shared/memory/adapted_heap_object.dart';
import 'package:devtools_app/src/shared/memory/class_name.dart';
import 'package:devtools_app/src/shared/memory/retainers.dart';
import 'package:flutter_test/flutter_test.dart';
class _ClassSizeTest {
_ClassSizeTest({
required this.name,
required this.heap,
required this.expectedClassARetainedSize,
}) : assert(_assertHeapIndexIsCode(heap));
Future<void> initialize() => calculateHeap(heap);
final AdaptedHeapData heap;
final String name;
final int expectedClassARetainedSize;
}
final _root = HeapClassName.fromPath(className: 'Root', library: 'l');
final _classA = HeapClassName.fromPath(className: 'A', library: 'l');
final _classB = HeapClassName.fromPath(className: 'B', library: 'l');
final _classSizeTests = <_ClassSizeTest>[
_ClassSizeTest(
name: 'separate',
heap: AdaptedHeapData(
[
_createOneByteObject(0, [1, 2, 3], _root),
_createOneByteObject(1, [], _classA),
_createOneByteObject(2, [], _classA),
_createOneByteObject(3, [], _classA),
],
rootIndex: 0,
),
expectedClassARetainedSize: 3,
),
_ClassSizeTest(
name: 'linked',
heap: AdaptedHeapData(
[
_createOneByteObject(0, [1], _root),
_createOneByteObject(1, [2], _classA),
_createOneByteObject(2, [3], _classA),
_createOneByteObject(3, [], _classA),
],
rootIndex: 0,
),
expectedClassARetainedSize: 3,
),
_ClassSizeTest(
name: 'full graph',
heap: AdaptedHeapData(
[
_createOneByteObject(0, [1], _root),
_createOneByteObject(1, [2, 3], _classA),
_createOneByteObject(2, [3, 1], _classA),
_createOneByteObject(3, [1, 2], _classA),
],
rootIndex: 0,
),
expectedClassARetainedSize: 3,
),
_ClassSizeTest(
name: 'with global B',
heap: AdaptedHeapData(
[
_createOneByteObject(0, [1], _root),
_createOneByteObject(1, [2, 4], _classA),
_createOneByteObject(2, [3, 4], _classA),
_createOneByteObject(3, [4], _classA),
_createOneByteObject(4, [], _classB),
],
rootIndex: 0,
),
expectedClassARetainedSize: 4,
),
];
void main() {
setUp(() async {
for (final t in _classSizeTests) {
await t.initialize();
}
});
test('$SingleClassStats does not double-count self-referenced classes.', () {
for (final t in _classSizeTests) {
final classes = SingleClassStats(heapClass: _classA);
for (final o in t.heap.objects) {
if (o.heapClass == _classA) classes.countInstance(t.heap, o.code);
}
expect(
classes.objects.retainedSize,
t.expectedClassARetainedSize,
reason: t.name,
);
}
});
}
AdaptedHeapObject _createOneByteObject(
int codeAndIndex,
List<int> references,
HeapClassName theClass,
) =>
AdaptedHeapObject(
code: codeAndIndex,
outRefs: references.toSet(),
heapClass: theClass,
shallowSize: 1,
);
/// For convenience of testing each heap object has code equal to the
/// index in array.
bool _assertHeapIndexIsCode(AdaptedHeapData heap) => heap.objects
.asMap()
.entries
.every((entry) => entry.key == entry.value.code);
| devtools/packages/devtools_app/test/memory/shared/heap/heap_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/memory/shared/heap/heap_test.dart",
"repo_id": "devtools",
"token_count": 1509
} | 151 |
// 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/devtools_app.dart';
import 'package:devtools_app/src/screens/performance/panes/frame_analysis/frame_analysis.dart';
import 'package:devtools_app/src/screens/performance/panes/frame_analysis/frame_hints.dart';
import 'package:devtools_app/src/screens/performance/panes/frame_analysis/frame_time_visualizer.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 '../../test_infra/matchers/matchers.dart';
import '../../test_infra/test_data/performance/sample_performance_data.dart';
void main() {
const windowSize = Size(1500.0, 500.0);
group('FlutterFrameAnalysisView', () {
late FlutterFrame frame;
late FrameAnalysis frameAnalysis;
late MockEnhanceTracingController mockEnhanceTracingController;
late RebuildCountModel rebuildCountModel;
setUp(() {
frame = FlutterFrame4.frameWithExtras;
frameAnalysis = FrameAnalysis(frame);
mockEnhanceTracingController = MockEnhanceTracingController();
rebuildCountModel = RebuildCountModel();
setGlobal(IdeTheme, IdeTheme());
setGlobal(OfflineModeController, OfflineModeController());
final fakeServiceConnection = FakeServiceConnectionManager();
setGlobal(ServiceConnectionManager, fakeServiceConnection);
setGlobal(NotificationService, NotificationService());
mockConnectedApp(
fakeServiceConnection.serviceManager.connectedApp!,
isFlutterApp: true,
isProfileBuild: true,
isWebApp: false,
);
});
Future<void> pumpAnalysisView(
WidgetTester tester,
FrameAnalysis? analysis,
) async {
await tester.pumpWidget(
wrapWithControllers(
FlutterFrameAnalysisView(
frameAnalysis: analysis,
enhanceTracingController: mockEnhanceTracingController,
rebuildCountModel: rebuildCountModel,
),
performance: PerformanceController(),
),
);
expect(find.byType(FlutterFrameAnalysisView), findsOneWidget);
}
testWidgetsWithWindowSize(
'builds with null data',
windowSize,
(WidgetTester tester) async {
await pumpAnalysisView(tester, null);
expect(
find.textContaining('No analysis data available for this frame.'),
findsOneWidget,
);
expect(find.byType(FrameHints), findsNothing);
expect(find.byType(FrameTimeVisualizer), findsNothing);
},
);
testWidgetsWithWindowSize(
'builds with non-null data',
windowSize,
(WidgetTester tester) async {
await pumpAnalysisView(tester, frameAnalysis);
expect(
find.textContaining('No analysis data available for this frame.'),
findsNothing,
);
expect(find.byType(FrameHints), findsOneWidget);
expect(find.byType(FrameTimeVisualizer), findsOneWidget);
},
);
group('FrameTimeVisualizer', () {
Future<void> pumpVisualizer(
WidgetTester tester,
FrameAnalysis frameAnalysis,
) async {
await tester.pumpWidget(
wrap(FrameTimeVisualizer(frameAnalysis: frameAnalysis)),
);
expect(find.byType(FrameTimeVisualizer), findsOneWidget);
}
testWidgetsWithWindowSize(
'builds successfully',
windowSize,
(WidgetTester tester) async {
await pumpVisualizer(tester, frameAnalysis);
expect(find.text('UI phases:'), findsOneWidget);
expect(find.textContaining('Build - '), findsOneWidget);
// The flex values are too small to show the text for these phases.
expect(find.textContaining('Layout - '), findsNothing);
expect(find.textContaining('Paint - '), findsNothing);
expect(find.byIcon(Icons.build), findsOneWidget);
expect(find.byIcon(Icons.auto_awesome_mosaic), findsOneWidget);
expect(find.byIcon(Icons.format_paint), findsOneWidget);
expect(find.text('Raster phase:'), findsOneWidget);
expect(find.textContaining('Raster - '), findsOneWidget);
expect(find.byIcon(Icons.grid_on), findsOneWidget);
expect(find.text('Raster phases:'), findsNothing);
expect(find.textContaining('Shader compilation'), findsNothing);
expect(find.textContaining('Other raster'), findsNothing);
expect(find.byIcon(Icons.image_outlined), findsNothing);
await expectLater(
find.byType(FrameTimeVisualizer),
matchesDevToolsGolden(
'../../test_infra/goldens/performance/frame_analysis/frame_time_visualizer.png',
),
);
},
);
testWidgetsWithWindowSize(
'builds with icons only for narrow screen',
const Size(200.0, 500.0),
(WidgetTester tester) async {
await pumpVisualizer(tester, frameAnalysis);
expect(find.text('UI phases:'), findsOneWidget);
expect(find.textContaining('Build - '), findsNothing);
expect(find.textContaining('Layout - '), findsNothing);
expect(find.textContaining('Paint - '), findsNothing);
expect(find.byIcon(Icons.build), findsOneWidget);
expect(find.byIcon(Icons.auto_awesome_mosaic), findsOneWidget);
expect(find.byIcon(Icons.format_paint), findsOneWidget);
expect(find.text('Raster phase:'), findsOneWidget);
expect(find.textContaining('Raster - '), findsNothing);
expect(find.byIcon(Icons.grid_on), findsOneWidget);
expect(find.text('Raster phases:'), findsNothing);
expect(find.textContaining('Shader compilation'), findsNothing);
expect(find.textContaining('Other raster'), findsNothing);
expect(find.byIcon(Icons.image_outlined), findsNothing);
await expectLater(
find.byType(FrameTimeVisualizer),
matchesDevToolsGolden(
'../../test_infra/goldens/performance/frame_analysis/frame_time_visualizer_icons_only.png',
),
);
},
);
testWidgetsWithWindowSize(
'builds for frame with shader compilation',
windowSize,
(WidgetTester tester) async {
frame = testFrameWithShaderJank;
frameAnalysis = FrameAnalysis(frame);
await pumpVisualizer(tester, frameAnalysis);
expect(find.text('UI phases:'), findsOneWidget);
expect(find.textContaining('Build - '), findsOneWidget);
// The flex values are too small to show the text for these phases.
expect(find.textContaining('Layout - '), findsNothing);
expect(find.textContaining('Paint - '), findsNothing);
expect(find.byIcon(Icons.build), findsOneWidget);
expect(find.byIcon(Icons.auto_awesome_mosaic), findsOneWidget);
expect(find.byIcon(Icons.format_paint), findsOneWidget);
expect(find.text('Raster phase:'), findsNothing);
expect(find.textContaining('Raster - '), findsNothing);
expect(find.byIcon(Icons.grid_on), findsOneWidget);
expect(find.text('Raster phases:'), findsOneWidget);
// The flex value for this phase is too narrow for text, but the
// icon is visible.
expect(find.textContaining('Shader compilation - '), findsNothing);
expect(find.byIcon(Icons.image_outlined), findsOneWidget);
expect(find.textContaining('Other raster - '), findsOneWidget);
await expectLater(
find.byType(FrameTimeVisualizer),
matchesDevToolsGolden(
'../../test_infra/goldens/performance/frame_analysis/frame_time_visualizer_with_shader_compilation.png',
),
);
},
);
});
});
}
| devtools/packages/devtools_app/test/performance/frame_analysis/frame_analysis_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/performance/frame_analysis/frame_analysis_test.dart",
"repo_id": "devtools",
"token_count": 3265
} | 152 |
// 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/src/shared/primitives/graph.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
late GraphNode testNodeA;
late GraphNode testNodeB;
late GraphNode testNodeC;
late GraphNode testNodeD;
late GraphNode testNodeE;
late GraphNode testNodeF;
group('GraphNode', () {
setUp(() {
testNodeA = GraphNode();
testNodeB = GraphNode();
testNodeC = GraphNode();
testNodeD = GraphNode();
testNodeE = GraphNode();
testNodeF = GraphNode();
testNodeA
..outgoingEdge(testNodeB)
..outgoingEdge(testNodeC)
..outgoingEdge(testNodeD);
testNodeB
..outgoingEdge(testNodeC)
..outgoingEdge(testNodeD);
testNodeD
..outgoingEdge(testNodeE)
..outgoingEdge(testNodeF);
testNodeF.outgoingEdge(testNodeB);
// Extra edges to make the edge counts interesting.
testNodeA
..outgoingEdge(testNodeB)
..outgoingEdge(testNodeC)
..outgoingEdge(testNodeC);
testNodeB.outgoingEdge(testNodeC);
testNodeD
..outgoingEdge(testNodeE)
..outgoingEdge(testNodeE);
});
test('predecessor and successor lists are accurate', () {
expect(testNodeA.predecessors, isEmpty);
expect(testNodeA.successors, {testNodeB, testNodeC, testNodeD});
expect(testNodeB.predecessors, {testNodeA, testNodeF});
expect(testNodeB.successors, {testNodeC, testNodeD});
expect(testNodeC.predecessors, {testNodeA, testNodeB});
expect(testNodeC.successors, isEmpty);
expect(testNodeD.predecessors, {testNodeA, testNodeB});
expect(testNodeD.successors, {testNodeE, testNodeF});
expect(testNodeE.predecessors, {testNodeD});
expect(testNodeE.successors, isEmpty);
expect(testNodeF.predecessors, {testNodeD});
expect(testNodeF.successors, {testNodeB});
});
test('predecessor and successor edge counts are accurate', () {
expect(testNodeA.predecessorEdgeCounts.keys, isEmpty);
expect(testNodeA.predecessorEdgeCounts.values, isEmpty);
expect(
testNodeA.successorEdgeCounts.keys,
[testNodeB, testNodeC, testNodeD],
);
expect(testNodeA.successorEdgeCounts.values, [2, 3, 1]);
expect(testNodeB.predecessorEdgeCounts.keys, [testNodeA, testNodeF]);
expect(testNodeB.predecessorEdgeCounts.values, [2, 1]);
expect(testNodeB.successorEdgeCounts.keys, [testNodeC, testNodeD]);
expect(testNodeB.successorEdgeCounts.values, [2, 1]);
expect(testNodeC.predecessorEdgeCounts.keys, [testNodeA, testNodeB]);
expect(testNodeC.predecessorEdgeCounts.values, [3, 2]);
expect(testNodeC.successorEdgeCounts.keys, isEmpty);
expect(testNodeC.successorEdgeCounts.values, isEmpty);
expect(testNodeD.predecessorEdgeCounts.keys, [testNodeA, testNodeB]);
expect(testNodeD.predecessorEdgeCounts.values, [1, 1]);
expect(testNodeD.successorEdgeCounts.keys, [testNodeE, testNodeF]);
expect(testNodeD.successorEdgeCounts.values, [3, 1]);
expect(testNodeE.predecessorEdgeCounts.keys, [testNodeD]);
expect(testNodeE.predecessorEdgeCounts.values, [3]);
expect(testNodeE.successorEdgeCounts.keys, isEmpty);
expect(testNodeE.successorEdgeCounts.values, isEmpty);
expect(testNodeF.predecessorEdgeCounts.keys, [testNodeD]);
expect(testNodeF.predecessorEdgeCounts.values, [1]);
expect(testNodeF.successorEdgeCounts.keys, [testNodeB]);
expect(testNodeF.successorEdgeCounts.values, [1]);
});
});
}
| devtools/packages/devtools_app/test/primitives/graph_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/primitives/graph_test.dart",
"repo_id": "devtools",
"token_count": 1510
} | 153 |
// 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/src/screens/app_size/app_size_screen.dart';
import 'package:devtools_app/src/screens/debugger/debugger_screen.dart';
import 'package:devtools_app/src/screens/inspector/inspector_screen.dart';
import 'package:devtools_app/src/screens/logging/logging_screen.dart';
import 'package:devtools_app/src/screens/memory/framework/memory_screen.dart';
import 'package:devtools_app/src/screens/network/network_screen.dart';
import 'package:devtools_app/src/screens/performance/performance_screen.dart';
import 'package:devtools_app/src/screens/profiler/profiler_screen.dart';
import 'package:devtools_app/src/shared/error_badge_manager.dart';
import 'package:flutter_test/flutter_test.dart';
final supportedScreenIds = [
InspectorScreen.id,
PerformanceScreen.id,
NetworkScreen.id,
];
final allScreenIds = [
InspectorScreen.id,
PerformanceScreen.id,
ProfilerScreen.id,
MemoryScreen.id,
DebuggerScreen.id,
NetworkScreen.id,
LoggingScreen.id,
AppSizeScreen.id,
];
void main() {
late ErrorBadgeManager errorBadgeManager;
group('ErrorBadgeManager', () {
setUp(() {
errorBadgeManager = ErrorBadgeManager();
});
test('base state', () {
for (final id in allScreenIds) {
expect(errorBadgeManager.errorCountNotifier(id).value, equals(0));
}
});
test('incrementBadgeCount only increments supported tabs', () {
for (final id in allScreenIds) {
expect(errorBadgeManager.errorCountNotifier(id).value, equals(0));
}
allScreenIds.forEach(errorBadgeManager.incrementBadgeCount);
for (final id in allScreenIds) {
if (supportedScreenIds.contains(id)) {
expect(errorBadgeManager.errorCountNotifier(id).value, equals(1));
} else {
expect(errorBadgeManager.errorCountNotifier(id).value, equals(0));
}
}
});
test('clearErrors resets counts', () {
allScreenIds.forEach(errorBadgeManager.incrementBadgeCount);
for (final id in allScreenIds) {
if (supportedScreenIds.contains(id)) {
expect(errorBadgeManager.errorCountNotifier(id).value, equals(1));
} else {
expect(errorBadgeManager.errorCountNotifier(id).value, equals(0));
}
}
allScreenIds.forEach(errorBadgeManager.clearErrors);
for (final id in allScreenIds) {
expect(errorBadgeManager.errorCountNotifier(id).value, equals(0));
}
});
});
}
| devtools/packages/devtools_app/test/shared/error_badge_manager_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/shared/error_badge_manager_test.dart",
"repo_id": "devtools",
"token_count": 997
} | 154 |
// 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/src/shared/log_storage.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:logging/logging.dart';
void main() {
group(
'LogStorage',
() {
late LogStorage logStorage;
setUp(() {
logStorage = LogStorage();
});
test(
'addLog',
() {
final logMessage =
LogRecord(Level.INFO, 'This is a logMessage', 'testLoggerName');
logStorage.addLog(logMessage);
expect(logStorage.toString(), contains(logMessage.level.name));
expect(logStorage.toString(), contains(logMessage.loggerName));
expect(logStorage.toString(), contains(logMessage.message));
},
);
test(
'clear',
() {
final logRecord =
LogRecord(Level.INFO, 'This is a logMessage', 'test');
logStorage.addLog(logRecord);
expect(logStorage.toString(), contains(logRecord.message));
logStorage.clear();
expect(logStorage.toString(), equals(''));
},
);
test(
'log limit',
() {
for (var i = 0; i < LogStorage.maxLogEntries; i++) {
final logRecord =
LogRecord(Level.INFO, 'This is logMessage: $i', 'test');
logStorage.addLog(logRecord);
}
expect(
// subtract 1 since last line has a newline
logStorage.toString().split('\n').length - 1,
equals(LogStorage.maxLogEntries),
);
final extraLogRecord =
LogRecord(Level.INFO, 'This is one extra Log Message', 'test');
logStorage.addLog(extraLogRecord);
expect(
// subtract 1 since last line has a newline
logStorage.toString().split('\n').length - 1,
equals(LogStorage.maxLogEntries),
);
expect(logStorage.toString(), contains(extraLogRecord.level.name));
expect(logStorage.toString(), contains(extraLogRecord.loggerName));
expect(logStorage.toString(), contains(extraLogRecord.message));
},
);
},
);
}
| devtools/packages/devtools_app/test/shared/log_storage_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/shared/log_storage_test.dart",
"repo_id": "devtools",
"token_count": 1033
} | 155 |
// 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:flutter_test/flutter_test.dart';
void main() {
group('ScreenMetaData', () {
test('values matches order of screens', () {
final enumOrder = ScreenMetaData.values.map((s) => s.id).toList();
final screenOrder =
defaultScreens().map((screen) => screen.screen.screenId).toList();
// Remove any items that don't exist in both - we can't verify
// the order of those.
enumOrder.removeWhereNot(screenOrder.toSet().contains);
screenOrder.removeWhereNot(enumOrder.toSet().contains);
expect(enumOrder, screenOrder);
});
});
}
extension _ListExtension<T> on List<T> {
void removeWhereNot(bool Function(T) test) {
removeWhere((item) => !test(item));
}
}
| devtools/packages/devtools_app/test/shared/screens_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/shared/screens_test.dart",
"repo_id": "devtools",
"token_count": 329
} | 156 |
// Copyright 2021 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 'package:devtools_app/src/shared/globals.dart';
import 'package:flutter_test/flutter_test.dart';
import '../test_infra/flutter_test_driver.dart' show FlutterRunConfiguration;
import '../test_infra/flutter_test_environment.dart';
void main() {
final FlutterTestEnvironment env = FlutterTestEnvironment(
const FlutterRunConfiguration(withDebugger: true),
);
group('VmFlagManager', () {
tearDownAll(() async {
await env.tearDownEnvironment(force: true);
});
test(
'flags initialized on vm service opened',
() async {
await env.setupEnvironment();
expect(serviceConnection.serviceManager.service, equals(env.service));
expect(serviceConnection.vmFlagManager, isNotNull);
expect(serviceConnection.vmFlagManager.flags.value, isNotNull);
await env.tearDownEnvironment();
},
timeout: const Timeout.factor(4),
);
test(
'notifies on flag change',
() async {
await env.setupEnvironment();
const profiler = 'profiler';
final flagManager = serviceConnection.vmFlagManager;
final initialFlags = flagManager.flags.value;
final profilerFlagNotifier = flagManager.flag(profiler)!;
expect(profilerFlagNotifier.value.valueAsString, equals('true'));
await serviceConnection.serviceManager.service!
.setFlag(profiler, 'false');
expect(profilerFlagNotifier.value.valueAsString, equals('false'));
// Await a delay so the new flags have time to be pulled and set.
await Future.delayed(const Duration(milliseconds: 5000));
final newFlags = flagManager.flags.value;
expect(newFlags, isNot(equals(initialFlags)));
await env.tearDownEnvironment();
},
timeout: const Timeout.factor(4),
);
});
}
| devtools/packages/devtools_app/test/shared/vm_flags_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/shared/vm_flags_test.dart",
"repo_id": "devtools",
"token_count": 726
} | 157 |
// Copyright 2021 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.
// ATTENTION: If any lines are added to or deleted from this file then the
// debugger panel integration test will need to be updated with new line numbers
// (the test verifies that breakpoints are hit at specific lines).
import 'dart:async';
import 'package:flutter/material.dart';
// Unused class in the sample application that is a widget.
//
// This is a fairly long description so that we can make sure that scrolling to
// a line works when we are paused at a breakpoint.
class MyOtherWidget extends StatelessWidget {
const MyOtherWidget({super.key});
@override
Widget build(BuildContext context) {
return const SizedBox();
}
}
// Unused class in the sample application that is not a widget.
//
// This is a fairly long description so that we can make sure that scrolling to
// a line works when we are paused at a breakpoint.
class NotAWidget {}
// Used class in the sample application that is not a widget.
//
// This is a class that can be used to periodically call a function at a set
// interval.
//
// This is a fairly long description so that we can make sure that scrolling to
// a line works when we are paused at a breakpoint.
class PeriodicAction {
PeriodicAction(this._action);
final void Function() _action;
void doEvery(Duration interval) {
Timer.periodic(interval, (_) {
_action();
});
}
}
| devtools/packages/devtools_app/test/test_infra/fixtures/flutter_app/lib/src/other_classes.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/test_infra/fixtures/flutter_app/lib/src/other_classes.dart",
"repo_id": "devtools",
"token_count": 413
} | 158 |
>// Copyright 2022 The Chromium Authors. All rights reserved.
#^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comment.line.double-slash.dart
>// Use of this source code is governed by a BSD-style license that can be
#^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comment.line.double-slash.dart
>// found in the LICENSE file.
#^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comment.line.double-slash.dart
>
>void foo() {
#^^^^ storage.type.primitive.dart
# ^^^ entity.name.function.dart
> Object? a;
# ^^^^^^ support.class.dart
# ^ keyword.operator.ternary.dart
# ^ punctuation.terminator.dart
> if (1 == 2) {}
# ^^ keyword.control.dart
# ^ constant.numeric.dart
# ^^ keyword.operator.comparison.dart
# ^ constant.numeric.dart
> if (1 != 2) {}
# ^^ keyword.control.dart
# ^ constant.numeric.dart
# ^^ keyword.operator.comparison.dart
# ^ constant.numeric.dart
> if (1 < 2) {}
# ^^ keyword.control.dart
# ^ constant.numeric.dart
# ^ keyword.operator.comparison.dart
# ^ constant.numeric.dart
> if (1 <= 2) {}
# ^^ keyword.control.dart
# ^ constant.numeric.dart
# ^^ keyword.operator.comparison.dart
# ^ constant.numeric.dart
> if (1 > 2) {}
# ^^ keyword.control.dart
# ^ constant.numeric.dart
# ^ keyword.operator.comparison.dart
# ^ constant.numeric.dart
> if (1 >= 2) {}
# ^^ keyword.control.dart
# ^ constant.numeric.dart
# ^^ keyword.operator.comparison.dart
# ^ constant.numeric.dart
> var b = 1 < 2 ? 1 / 1 : 2 * 2;
# ^^^ storage.type.primitive.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^ keyword.operator.comparison.dart
# ^ constant.numeric.dart
# ^ keyword.operator.ternary.dart
# ^ constant.numeric.dart
# ^ keyword.operator.arithmetic.dart
# ^ constant.numeric.dart
# ^ keyword.operator.ternary.dart
# ^ constant.numeric.dart
# ^ keyword.operator.arithmetic.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> a ??= b;
# ^^ keyword.operator.ternary.dart
# ^ keyword.operator.assignment.dart
# ^ punctuation.terminator.dart
> b += 1;
# ^^ keyword.operator.assignment.arithmetic.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> b -= 1;
# ^^ keyword.operator.assignment.arithmetic.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> b = b / 2;
# ^ keyword.operator.assignment.dart
# ^ keyword.operator.arithmetic.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> b = b ~/ 2;
# ^ keyword.operator.assignment.dart
# ^ keyword.operator.bitwise.dart
# ^ keyword.operator.arithmetic.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> b = b % 2;
# ^ keyword.operator.assignment.dart
# ^ keyword.operator.arithmetic.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> b++;
# ^^ keyword.operator.increment-decrement.dart
# ^ punctuation.terminator.dart
> b--;
# ^^ keyword.operator.increment-decrement.dart
# ^ punctuation.terminator.dart
> ++b;
# ^^ keyword.operator.increment-decrement.dart
# ^ punctuation.terminator.dart
> --b;
# ^^ keyword.operator.increment-decrement.dart
# ^ punctuation.terminator.dart
> var c = 1 >> 2;
# ^^^ storage.type.primitive.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^^ keyword.operator.bitwise.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> c >>= 1;
# ^^ keyword.operator.bitwise.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> var d = 1 << 2;
# ^^^ storage.type.primitive.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^^ keyword.operator.bitwise.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> d <<= 2;
# ^^ keyword.operator.bitwise.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> var e = 1 >>> 2;
# ^^^ storage.type.primitive.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^^^ keyword.operator.bitwise.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> e >>>= 3;
# ^^^ keyword.operator.bitwise.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> var f = -b;
# ^^^ storage.type.primitive.dart
# ^ keyword.operator.assignment.dart
# ^ keyword.operator.arithmetic.dart
# ^ punctuation.terminator.dart
> var g = 1 & 2;
# ^^^ storage.type.primitive.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^ keyword.operator.bitwise.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> var h = 1 ^ 2;
# ^^^ storage.type.primitive.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^ keyword.operator.bitwise.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> var i = ~2;
# ^^^ storage.type.primitive.dart
# ^ keyword.operator.assignment.dart
# ^ keyword.operator.bitwise.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> var j = 1 & 2;
# ^^^ storage.type.primitive.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^ keyword.operator.bitwise.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> j &= 2;
# ^ keyword.operator.bitwise.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> j ^= 2;
# ^ keyword.operator.bitwise.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> j |= 2;
# ^ keyword.operator.bitwise.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> var k = 1 ^ 2;
# ^^^ storage.type.primitive.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^ keyword.operator.bitwise.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> var l = 1 | 2;
# ^^^ storage.type.primitive.dart
# ^ keyword.operator.assignment.dart
# ^ constant.numeric.dart
# ^ keyword.operator.bitwise.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> var m = !(a == a && false || true);
# ^^^ storage.type.primitive.dart
# ^ keyword.operator.assignment.dart
# ^ keyword.operator.logical.dart
# ^^ keyword.operator.comparison.dart
# ^^ keyword.operator.bitwise.dart
# ^^^^^ constant.language.dart
# ^^ keyword.operator.bitwise.dart
# ^^^^ constant.language.dart
# ^ punctuation.terminator.dart
>}
| devtools/packages/devtools_app/test/test_infra/goldens/syntax_highlighting/operators.dart.golden/0 | {
"file_path": "devtools/packages/devtools_app/test/test_infra/goldens/syntax_highlighting/operators.dart.golden",
"repo_id": "devtools",
"token_count": 3715
} | 159 |
// 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 'package:devtools_app/devtools_app.dart';
import 'package:devtools_app/src/shared/config_specific/import_export/import_export.dart';
import 'package:devtools_app/src/shared/feature_flags.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/test_data.dart';
import 'package:flutter/material.dart';
import 'package:stager/stager.dart';
/// To run:
/// flutter run -t test/test_infra/scenes/performance/default.stager_app.g.dart -d macos
class PerformanceDefaultScene extends Scene {
late PerformanceController controller;
@override
Widget build(BuildContext context) {
return wrapWithControllers(
const PerformanceScreenBody(),
performance: controller,
);
}
@override
Future<void> setUp() async {
FeatureFlags.widgetRebuildstats = true;
setGlobal(OfflineModeController, OfflineModeController());
setGlobal(IdeTheme, IdeTheme());
setGlobal(NotificationService, NotificationService());
setGlobal(BannerMessagesController, BannerMessagesController());
setGlobal(PreferencesController, PreferencesController());
setGlobal(ServiceConnectionManager, ServiceConnectionManager());
await _loadOfflineSnapshot();
controller = PerformanceController();
}
@override
String get title => '$PerformanceDefaultScene';
// TODO(kenz): call tearDown on the scenes that use this scene
void tearDown() {
FeatureFlags.widgetRebuildstats = false;
}
}
Future<void> _loadOfflineSnapshot() async {
final completer = Completer<bool>();
final importController = ImportController((screenId) {
completer.complete(true);
});
final jsonFile = DevToolsJsonFile(
name: 'fake/path/to/perf_data.dart',
data: samplePerformanceData,
lastModifiedTime: DateTime.now(),
);
importController.importData(jsonFile);
await completer.future;
}
| devtools/packages/devtools_app/test/test_infra/scenes/performance/default.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/test_infra/scenes/performance/default.dart",
"repo_id": "devtools",
"token_count": 662
} | 160 |
// 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.
final Map<String, dynamic> simpleCpuProfile2 = {
'type': '_CpuProfileTimeline',
'samplePeriod': 50,
'stackDepth': 128,
'sampleCount': 10,
'timeOriginMicros': 0,
'timeExtentMicros': 10000,
'stackFrames': _profileStackFrames,
'traceEvents': _profileTraceEvents,
};
final _profileStackFrames = {
'140357727781376-1': {
'category': 'Dart',
'name': 'A',
'parent': 'cpuProfileRoot',
'resolvedUrl': 'path/to/my_app/packages/my_app/lib/src/a.dart',
'packageUri': 'package:my_app/src/a.dart',
'sourceLine': 111,
},
'140357727781376-2': {
'category': 'Dart',
'name': 'B',
'parent': '140357727781376-1',
'resolvedUrl': 'path/to/my_app/packages/my_app/lib/src/b.dart',
'packageUri': 'package:my_app/src/b.dart',
'sourceLine': 222,
},
'140357727781376-3': {
'category': 'Dart',
'name': 'C',
'parent': '140357727781376-2',
'resolvedUrl': 'path/to/my_app/packages/my_app/lib/src/c.dart',
'packageUri': 'package:my_app/src/c.dart',
'sourceLine': 333,
},
'140357727781376-4': {
'category': 'Dart',
'name': 'D',
'parent': '140357727781376-1',
'resolvedUrl': 'path/to/my_app/packages/my_app/lib/src/d.dart',
'packageUri': 'package:my_app/src/d.dart',
'sourceLine': 444,
},
'140357727781376-5': {
'category': 'Dart',
'name': 'C',
'parent': '140357727781376-4',
'resolvedUrl': 'path/to/my_app/packages/my_app/lib/src/c.dart',
'packageUri': 'package:my_app/src/c.dart',
'sourceLine': 333,
},
'140357727781376-6': {
'category': 'Dart',
'name': 'F',
'parent': '140357727781376-1',
'resolvedUrl': 'path/to/my_app/packages/my_app/lib/src/f.dart',
'packageUri': 'package:my_app/src/f.dart',
'sourceLine': 555,
},
'140357727781376-7': {
'category': 'Dart',
'name': 'B',
'parent': '140357727781376-6',
'resolvedUrl': 'path/to/my_app/packages/my_app/lib/src/b.dart',
'packageUri': 'package:my_app/src/b.dart',
'sourceLine': 222,
},
'140357727781376-8': {
'category': 'Dart',
'name': 'C',
'parent': '140357727781376-7',
'resolvedUrl': 'path/to/my_app/packages/my_app/lib/src/c.dart',
'packageUri': 'package:my_app/src/c.dart',
'sourceLine': 333,
},
'140357727781376-9': {
'category': 'Dart',
'name': 'A',
'parent': '140357727781376-5',
'resolvedUrl': 'path/to/my_app/packages/my_app/lib/src/a.dart',
'packageUri': 'package:my_app/src/a.dart',
'sourceLine': 111,
},
};
final List<Map<String, dynamic>> _profileTraceEvents = [
{
'ph': 'P',
'name': '',
'pid': 77616,
'tid': 42247,
'ts': 0,
'cat': 'Dart',
'args': <String, Object?>{
'userTag': 'Default',
'vmTag': 'VM',
},
'sf': '140357727781376-1',
},
{
'ph': 'P',
'name': '',
'pid': 77616,
'tid': 42247,
'ts': 1000,
'cat': 'Dart',
'args': <String, Object?>{
'userTag': 'Default',
'vmTag': 'VM',
},
'sf': '140357727781376-2',
},
{
'ph': 'P',
'name': '',
'pid': 77616,
'tid': 42247,
'ts': 2000,
'cat': 'Dart',
'args': <String, Object?>{
'userTag': 'Default',
'vmTag': 'VM',
},
'sf': '140357727781376-7',
},
{
'ph': 'P',
'name': '',
'pid': 77616,
'tid': 42247,
'ts': 3000,
'cat': 'Dart',
'args': <String, Object?>{
'userTag': 'Default',
'vmTag': 'VM',
},
'sf': '140357727781376-7',
},
{
'ph': 'P',
'name': '',
'pid': 77616,
'tid': 42247,
'ts': 4000,
'cat': 'Dart',
'args': <String, Object?>{
'userTag': 'Default',
'vmTag': 'VM',
},
'sf': '140357727781376-3',
},
{
'ph': 'P',
'name': '',
'pid': 77616,
'tid': 42247,
'ts': 5000,
'cat': 'Dart',
'args': <String, Object?>{
'userTag': 'Default',
'vmTag': 'VM',
},
'sf': '140357727781376-3',
},
{
'ph': 'P',
'name': '',
'pid': 77616,
'tid': 42247,
'ts': 6000,
'cat': 'Dart',
'args': <String, Object?>{
'userTag': 'Default',
'vmTag': 'VM',
},
'sf': '140357727781376-3',
},
{
'ph': 'P',
'name': '',
'pid': 77616,
'tid': 42247,
'ts': 7000,
'cat': 'Dart',
'args': <String, Object?>{
'userTag': 'Default',
'vmTag': 'VM',
},
'sf': '140357727781376-8',
},
{
'ph': 'P',
'name': '',
'pid': 77616,
'tid': 42247,
'ts': 8000,
'cat': 'Dart',
'args': <String, Object?>{
'userTag': 'Default',
'vmTag': 'VM',
},
'sf': '140357727781376-5',
},
{
'ph': 'P',
'name': '',
'pid': 77616,
'tid': 42247,
'ts': 9000,
'cat': 'Dart',
'args': <String, Object?>{
'userTag': 'Default',
'vmTag': 'VM',
},
'sf': '140357727781376-9',
},
];
const String simpleProfile2Golden = '''
A - children: 3 - excl: 1 - incl: 10
B - children: 1 - excl: 1 - incl: 4
C - children: 0 - excl: 3 - incl: 3
D - children: 1 - excl: 0 - incl: 2
C - children: 1 - excl: 1 - incl: 2
A - children: 0 - excl: 1 - incl: 1
F - children: 1 - excl: 0 - incl: 3
B - children: 1 - excl: 2 - incl: 3
C - children: 0 - excl: 1 - incl: 1
''';
const String simpleProfile2MethodTableGolden = '''
A - (package:my_app/src/a.dart:111) (10 samples)
Callers:
C - (package:my_app/src/c.dart:333) - 100.00%
Callees:
B - (package:my_app/src/b.dart:222) - 44.44%
F - (package:my_app/src/f.dart:555) - 33.33%
D - (package:my_app/src/d.dart:444) - 22.22%
B - (package:my_app/src/b.dart:222) (7 samples)
Callers:
A - (package:my_app/src/a.dart:111) - 57.14%
F - (package:my_app/src/f.dart:555) - 42.86%
Callees:
C - (package:my_app/src/c.dart:333) - 100.00%
C - (package:my_app/src/c.dart:333) (6 samples)
Callers:
B - (package:my_app/src/b.dart:222) - 66.67%
D - (package:my_app/src/d.dart:444) - 33.33%
Callees:
A - (package:my_app/src/a.dart:111) - 100.00%
F - (package:my_app/src/f.dart:555) (3 samples)
Callers:
A - (package:my_app/src/a.dart:111) - 100.00%
Callees:
B - (package:my_app/src/b.dart:222) - 100.00%
D - (package:my_app/src/d.dart:444) (2 samples)
Callers:
A - (package:my_app/src/a.dart:111) - 100.00%
Callees:
C - (package:my_app/src/c.dart:333) - 100.00%
''';
| devtools/packages/devtools_app/test/test_infra/test_data/cpu_profiler/simple_profile_2.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/test_infra/test_data/cpu_profiler/simple_profile_2.dart",
"repo_id": "devtools",
"token_count": 3316
} | 161 |
// 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.
class A {
String get name => '';
set name(String value) {}
void method() {}
void get() {}
void set() {}
}
mixin MyMixin<T> on List<T> {}
| devtools/packages/devtools_app/test/test_infra/test_data/syntax_highlighting/classes_mixins.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/test_infra/test_data/syntax_highlighting/classes_mixins.dart",
"repo_id": "devtools",
"token_count": 99
} | 162 |
// 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/src/shared/diagnostics/dart_object_node.dart';
import 'package:devtools_app/src/shared/diagnostics/generic_instance_reference.dart';
import 'package:vm_service/vm_service.dart';
import '../../debugger/typed_data_variable_test.dart';
void resetRef() {
_refNumber = 0;
}
void resetRoot() {
_rootNumber = 0;
}
DartObjectNode buildParentListVariable({int length = 2}) {
return DartObjectNode.create(
BoundVariable(
name: _incrementRoot(),
value: _buildInstanceRefForList(length: length),
),
_isolateRef,
);
}
DartObjectNode buildListVariable({int length = 2}) {
final listVariable = buildParentListVariable(length: length);
for (int i = 0; i < length; i++) {
listVariable.addChild(
DartObjectNode.create(
BoundVariable(
name: '$i',
value: InstanceRef(
id: _incrementRef(),
kind: InstanceKind.kInt,
classRef: ClassRef(
name: 'Integer',
id: _incrementRef(),
library: _libraryRef,
),
valueAsString: '$i',
valueAsStringIsTruncated: false,
),
),
_isolateRef,
),
);
}
return listVariable;
}
DartObjectNode buildListGroupingVariable({
required int length,
required int offset,
required int count,
}) {
return DartObjectNode.grouping(
GenericInstanceRef(
isolateRef: isolateRef,
value: _buildInstanceRefForList(length: length),
),
offset: offset,
count: count,
);
}
DartObjectNode buildParentMapVariable({int length = 2}) {
return DartObjectNode.create(
BoundVariable(
name: _incrementRoot(),
value: _buildInstanceRefForMap(length: length),
),
_isolateRef,
);
}
DartObjectNode buildMapVariable({int length = 2}) {
final mapVariable = buildParentMapVariable(length: length);
for (int i = 0; i < length; i++) {
mapVariable.addChild(
DartObjectNode.create(
BoundVariable(
name: "['key${i + 1}']",
value: InstanceRef(
id: _incrementRef(),
kind: InstanceKind.kDouble,
classRef: ClassRef(
name: 'Double',
id: _incrementRef(),
library: _libraryRef,
),
valueAsString: '${i + 1}.0',
valueAsStringIsTruncated: false,
),
),
_isolateRef,
),
);
}
return mapVariable;
}
DartObjectNode buildMapGroupingVariable({
required int length,
required int offset,
required int count,
}) {
return DartObjectNode.grouping(
GenericInstanceRef(
isolateRef: isolateRef,
value: _buildInstanceRefForMap(length: length),
),
offset: offset,
count: count,
);
}
DartObjectNode buildParentSetVariable({int length = 2}) {
return DartObjectNode.create(
BoundVariable(
name: _incrementRoot(),
value: _buildInstanceRefForSet(length: length),
),
_isolateRef,
);
}
DartObjectNode buildSetVariable({int length = 2}) {
final setVariable = buildParentSetVariable(length: length);
for (int i = 0; i < length; i++) {
setVariable.addChild(
DartObjectNode.fromValue(
value: InstanceRef(
id: _incrementRef(),
kind: InstanceKind.kString,
classRef: ClassRef(
name: 'String',
id: _incrementRef(),
library: _libraryRef,
),
valueAsString: 'set value $i',
valueAsStringIsTruncated: false,
),
isolateRef: _isolateRef,
),
);
}
return setVariable;
}
DartObjectNode buildSetGroupingVariable({
required int length,
required int offset,
required int count,
}) {
return DartObjectNode.grouping(
GenericInstanceRef(
isolateRef: isolateRef,
value: _buildInstanceRefForSet(length: length),
),
offset: offset,
count: count,
);
}
DartObjectNode buildStringVariable(String value) {
return DartObjectNode.create(
BoundVariable(
name: _incrementRoot(),
value: InstanceRef(
id: _incrementRef(),
kind: InstanceKind.kString,
classRef: ClassRef(
name: 'String',
id: _incrementRef(),
library: _libraryRef,
),
valueAsString: value,
valueAsStringIsTruncated: true,
),
),
_isolateRef,
);
}
DartObjectNode buildBooleanVariable(bool value) {
return DartObjectNode.create(
BoundVariable(
name: _incrementRoot(),
value: InstanceRef(
id: _incrementRef(),
kind: InstanceKind.kBool,
classRef: ClassRef(
name: 'Boolean',
id: _incrementRef(),
library: _libraryRef,
),
valueAsString: '$value',
valueAsStringIsTruncated: false,
),
),
_isolateRef,
);
}
InstanceRef _buildInstanceRefForMap({required int length}) => InstanceRef(
id: _incrementRef(),
kind: InstanceKind.kMap,
classRef: ClassRef(
name: '_InternalLinkedHashmap',
id: _incrementRef(),
library: _libraryRef,
),
length: length,
);
InstanceRef _buildInstanceRefForList({required int length}) => InstanceRef(
id: _incrementRef(),
kind: InstanceKind.kList,
classRef: ClassRef(
name: '_GrowableList',
id: _incrementRef(),
library: _libraryRef,
),
length: length,
);
InstanceRef _buildInstanceRefForSet({required int length}) => InstanceRef(
id: _incrementRef(),
kind: InstanceKind.kSet,
classRef: ClassRef(
name: '_Set',
id: _incrementRef(),
library: _libraryRef,
),
length: length,
);
final _libraryRef = LibraryRef(
name: 'some library',
uri: 'package:foo/foo.dart',
id: 'lib-id-1',
);
final _isolateRef = IsolateRef(
id: '433',
number: '1',
name: 'my-isolate',
isSystemIsolate: false,
);
int _refNumber = 0;
String _incrementRef() {
_refNumber++;
return 'ref$_refNumber';
}
int _rootNumber = 0;
String _incrementRoot() {
_rootNumber++;
return 'Root $_rootNumber';
}
| devtools/packages/devtools_app/test/test_infra/utils/variable_utils.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/test_infra/utils/variable_utils.dart",
"repo_id": "devtools",
"token_count": 2707
} | 163 |
// 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.
// Used for GA collecting (communicating to https://www.googletagmanager.com/gtag/js script).
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
// InitializeGA with our dimensions. Both the name and order (dimension #) should match the those in gtags.dart.
// Note that you will also need add the custom dimension(1) or metric(2) in the Analytics 360 Admin console:
// [1]: https://analytics.google.com/analytics/web/#/a26406144w199489242p193859628/admin/custom-dimensions/
// [2]: https://analytics.google.com/analytics/web/#/a26406144w199489242p193859628/admin/custom-metrics/
// The index number assigned there should match the dimension or metric number assigned in this configuration.
function initializeGA() {
gtag('js', new Date());
gtag('event', 'config', {
'send_to': DEVTOOLS_GOOGLE_TAG_ID,
'custom_map': {
// Custom dimensions:
'dimension1': 'user_app',
'dimension2': 'user_build',
'dimension3': 'user_platform',
'dimension4': 'devtools_platform',
'dimension5': 'devtools_chrome',
'dimension6': 'devtools_version',
'dimension7': 'ide_launched',
'dimension8': 'flutter_client_id',
'dimension9': 'is_external_build',
'dimension10': 'is_embedded',
'dimension11': 'g3_username',
'dimension12': 'ide_launched_feature',
// Custom metrics:
'metric1': 'ui_duration_micros',
'metric2': 'raster_duration_micros',
'metric3': 'shader_compilation_duration_micros',
'metric4': 'cpu_sample_count',
'metric5': 'cpu_stack_depth',
'metric6': 'trace_event_count',
'metric7': 'heap_diff_objects_before',
'metric8': 'heap_diff_objects_after',
'metric9': 'heap_objects_total',
'metric10': 'root_set_count',
'metric11': 'row_count',
'metric12': 'inspector_tree_controller_id',
},
cookie_flags: 'SameSite=None;Secure',
});
}
function hookupListenerForGA() {
// Record when DevTools browser tab is selected (visible), not selected (hidden) or browser minimized.
document.addEventListener('visibilitychange', function (e) {
gtag('event', document.visibilityState, {
event_category: 'application',
});
});
}
| devtools/packages/devtools_app/web/devtools_analytics.js/0 | {
"file_path": "devtools/packages/devtools_app/web/devtools_analytics.js",
"repo_id": "devtools",
"token_count": 881
} | 164 |
// 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/utils.dart';
void main() {
setAndAccessGlobal();
}
/// This method demonstrates setting and accessing globals, which is
/// functionality exposed by 'package:devtools_app_shared/utils.dart'.
void setAndAccessGlobal() {
// Creates a globally accessible variable (`globals[ServiceManager]`);
setGlobal(MyCoolClass, MyCoolClass());
// Access the variable directory from [globals].
final coolClassFromGlobals = globals[MyCoolClass] as MyCoolClass;
coolClassFromGlobals.foo();
// OR (recommended) access the global from a top level getter.
coolClass.foo();
}
MyCoolClass get coolClass => globals[MyCoolClass] as MyCoolClass;
class MyCoolClass {
void foo() {
print('foo');
}
}
| devtools/packages/devtools_app_shared/example/utils/globals_example.dart/0 | {
"file_path": "devtools/packages/devtools_app_shared/example/utils/globals_example.dart",
"repo_id": "devtools",
"token_count": 270
} | 165 |
// 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:math' as math;
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import '../utils/utils.dart';
/// A widget that takes a list of children, lays them out along [axis], and
/// allows the user to resize them.
///
/// The user can customize the amount of space allocated to each child by
/// dragging a divider between them.
///
/// [initialFractions] defines how much space to give each child when building
/// this widget.
///
/// [minSizes] defines the minimum size that each child can be set to when
/// adjusting the sizes of the children.
final class SplitPane extends StatefulWidget {
/// Builds a split oriented along [axis].
SplitPane({
Key? key,
required this.axis,
required this.children,
required this.initialFractions,
this.minSizes,
this.splitters,
}) : assert(children.length >= 2),
assert(initialFractions.length >= 2),
assert(children.length == initialFractions.length),
super(key: key) {
_verifyFractionsSumTo1(initialFractions);
if (minSizes != null) {
assert(minSizes!.length == children.length);
}
if (splitters != null) {
assert(splitters!.length == children.length - 1);
}
}
/// The main axis the children will lay out on.
///
/// If [Axis.horizontal], the children will be placed in a [Row]
/// and they will be horizontally resizable.
///
/// If [Axis.vertical], the children will be placed in a [Column]
/// and they will be vertically resizable.
///
/// Cannot be null.
final Axis axis;
/// The children that will be laid out along [axis].
final List<Widget> children;
/// The fraction of the layout to allocate to each child in [children].
///
/// The index of [initialFractions] corresponds to the child at index of
/// [children].
final List<double> initialFractions;
/// The minimum size each child is allowed to be.
final List<double>? minSizes;
/// Splitter widgets to divide [children].
///
/// If this is null, a default splitter will be used to divide [children].
final List<PreferredSizeWidget>? splitters;
/// The key passed to the divider between children[index] and
/// children[index + 1].
///
/// Visible to grab it in tests.
@visibleForTesting
Key dividerKey(int index) => Key('$this dividerKey $index');
static Axis axisFor(BuildContext context, double horizontalAspectRatio) {
final screenSize = MediaQuery.of(context).size;
final aspectRatio = screenSize.width / screenSize.height;
if (aspectRatio >= horizontalAspectRatio) return Axis.horizontal;
return Axis.vertical;
}
@override
State<StatefulWidget> createState() => _SplitPaneState();
}
final class _SplitPaneState extends State<SplitPane> {
late final List<double> fractions;
bool get isHorizontal => widget.axis == Axis.horizontal;
@override
void initState() {
super.initState();
fractions = List.of(widget.initialFractions);
}
@override
Widget build(BuildContext context) {
return LayoutBuilder(builder: _buildLayout);
}
Widget _buildLayout(BuildContext _, BoxConstraints constraints) {
final width = constraints.maxWidth;
final height = constraints.maxHeight;
final axisSize = isHorizontal ? width : height;
final availableSize = axisSize - _totalSplitterSize();
// Size calculation helpers.
double minSizeForIndex(int index) {
if (widget.minSizes == null) return 0.0;
double totalMinSize = 0;
for (var minSize in widget.minSizes!) {
totalMinSize += minSize;
}
// Reduce the min sizes gracefully if the total required min size for all
// children is greater than the available size for children.
return totalMinSize > availableSize
? widget.minSizes![index] * availableSize / totalMinSize
: widget.minSizes![index];
}
double minFractionForIndex(int index) =>
minSizeForIndex(index) / availableSize;
void clampFraction(int index) {
fractions[index] =
fractions[index].clamp(minFractionForIndex(index), 1.0);
}
double sizeForIndex(int index) => availableSize * fractions[index];
double fractionDeltaRequired = 0.0;
double fractionDeltaAvailable = 0.0;
double deltaFromMinimumSize(int index) =>
fractions[index] - minFractionForIndex(index);
for (int i = 0; i < fractions.length; ++i) {
final delta = deltaFromMinimumSize(i);
if (delta < 0) {
fractionDeltaRequired -= delta;
} else {
fractionDeltaAvailable += delta;
}
}
if (fractionDeltaRequired > 0) {
// Likely due to a change in the available size, the current fractions for
// the children do not obey the min size constraints.
// The min size constraints for children are scaled so it is always
// possible to meet them. A scaleFactor greater than 1 would indicate that
// it is impossible to meet the constraints.
double scaleFactor = fractionDeltaRequired / fractionDeltaAvailable;
assert(scaleFactor <= 1 + defaultEpsilon);
scaleFactor = math.min(scaleFactor, 1.0);
for (int i = 0; i < fractions.length; ++i) {
final delta = deltaFromMinimumSize(i);
if (delta < 0) {
// This is equivalent to adding delta but avoids rounding error.
fractions[i] = minFractionForIndex(i);
} else {
// Reduce all fractions that are above their minimum size by an amount
// proportional to their ability to reduce their size without
// violating their minimum size constraints.
fractions[i] -= delta * scaleFactor;
}
}
}
// Determine what fraction to give each child, including enough space to
// display the divider.
final sizes = List.generate(fractions.length, (i) => sizeForIndex(i));
void updateSpacing(DragUpdateDetails dragDetails, int splitterIndex) {
final dragDelta =
isHorizontal ? dragDetails.delta.dx : dragDetails.delta.dy;
final fractionalDelta = dragDelta / axisSize;
// Returns the actual delta applied to elements before the splitter.
double updateSpacingBeforeSplitterIndex(double delta) {
final startingDelta = delta;
var index = splitterIndex;
while (index >= 0) {
fractions[index] += delta;
final minFraction = minFractionForIndex(index);
if (fractions[index] >= minFraction) {
clampFraction(index);
return startingDelta;
}
delta = fractions[index] - minFraction;
clampFraction(index);
index--;
}
// At this point, we know that both [startingDelta] and [delta] are
// negative, and that [delta] represents the overflow that did not get
// applied.
return startingDelta - delta;
}
// Returns the actual delta applied to elements after the splitter.
double updateSpacingAfterSplitterIndex(double delta) {
final startingDelta = delta;
var index = splitterIndex + 1;
while (index < fractions.length) {
fractions[index] += delta;
final minFraction = minFractionForIndex(index);
if (fractions[index] >= minFraction) {
clampFraction(index);
return startingDelta;
}
delta = fractions[index] - minFraction;
clampFraction(index);
index++;
}
// At this point, we know that both [startingDelta] and [delta] are
// negative, and that [delta] represents the overflow that did not get
// applied.
return startingDelta - delta;
}
setState(() {
// Update the fraction of space consumed by the children. Always update
// the shrinking children first so that we do not over-increase the size
// of the growing children and cause layout overflow errors.
if (fractionalDelta <= 0.0) {
final appliedDelta =
updateSpacingBeforeSplitterIndex(fractionalDelta);
updateSpacingAfterSplitterIndex(-appliedDelta);
} else {
final appliedDelta =
updateSpacingAfterSplitterIndex(-fractionalDelta);
updateSpacingBeforeSplitterIndex(-appliedDelta);
}
});
_verifyFractionsSumTo1(fractions);
}
final children = <Widget>[];
for (int i = 0; i < widget.children.length; i++) {
children.addAll([
SizedBox(
width: isHorizontal ? sizes[i] : width,
height: isHorizontal ? height : sizes[i],
child: widget.children[i],
),
if (i < widget.children.length - 1)
MouseRegion(
cursor: isHorizontal
? SystemMouseCursors.resizeColumn
: SystemMouseCursors.resizeRow,
child: GestureDetector(
key: widget.dividerKey(i),
behavior: HitTestBehavior.translucent,
onHorizontalDragUpdate: (details) =>
isHorizontal ? updateSpacing(details, i) : null,
onVerticalDragUpdate: (details) =>
isHorizontal ? null : updateSpacing(details, i),
// DartStartBehavior.down is needed to keep the mouse pointer stuck to
// the drag bar. There still appears to be a few frame lag before the
// drag action triggers which is't ideal but isn't a launch blocker.
dragStartBehavior: DragStartBehavior.down,
child: widget.splitters != null
? widget.splitters![i]
: DefaultSplitter(isHorizontal: isHorizontal),
),
),
]);
}
return Flex(
direction: widget.axis,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: children,
);
}
double _totalSplitterSize() {
final numSplitters = widget.children.length - 1;
if (widget.splitters == null) {
return numSplitters * DefaultSplitter.splitterWidth;
} else {
var totalSize = 0.0;
for (var splitter in widget.splitters!) {
totalSize += isHorizontal
? splitter.preferredSize.width
: splitter.preferredSize.height;
}
return totalSize;
}
}
}
final class DefaultSplitter extends StatelessWidget {
const DefaultSplitter({super.key, required this.isHorizontal});
static const double iconSize = 24.0;
static const double splitterWidth = 12.0;
final bool isHorizontal;
@override
Widget build(BuildContext context) {
return Transform.rotate(
angle: isHorizontal ? degToRad(90.0) : degToRad(0.0),
child: Align(
widthFactor: 0.5,
heightFactor: 0.5,
child: Icon(
Icons.drag_handle,
size: iconSize,
color: Theme.of(context).focusColor,
),
),
);
}
}
void _verifyFractionsSumTo1(List<double> fractions) {
var sumFractions = 0.0;
for (var fraction in fractions) {
sumFractions += fraction;
}
assert(
(1.0 - sumFractions).abs() < defaultEpsilon,
'Fractions should sum to 1.0, but instead sum to $sumFractions:\n$fractions',
);
}
| devtools/packages/devtools_app_shared/lib/src/ui/split_pane.dart/0 | {
"file_path": "devtools/packages/devtools_app_shared/lib/src/ui/split_pane.dart",
"repo_id": "devtools",
"token_count": 4238
} | 166 |
#include "Generated.xcconfig"
| devtools/packages/devtools_extensions/example/app_that_uses_foo/ios/Flutter/Release.xcconfig/0 | {
"file_path": "devtools/packages/devtools_extensions/example/app_that_uses_foo/ios/Flutter/Release.xcconfig",
"repo_id": "devtools",
"token_count": 12
} | 167 |
// 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 'foo_controller.dart';
/// This is an example widget that will be used from `app_that_uses_foo`.
class FooWidget extends StatelessWidget {
const FooWidget({super.key, required this.fooController});
final FooController fooController;
@override
Widget build(BuildContext context) {
final textStyle = Theme.of(context).textTheme.bodyLarge;
return ValueListenableBuilder(
valueListenable: fooController.things,
builder: (context, things, _) {
return ValueListenableBuilder(
valueListenable: fooController.favoriteThing,
builder: (context, favorite, _) {
return Column(
mainAxisSize: MainAxisSize.min,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
ElevatedButton(
onPressed: fooController.addThing,
child: Text('Add thing', style: textStyle),
),
ElevatedButton(
onPressed: fooController.removeThing,
child: Text('Remove thing', style: textStyle),
),
],
),
const SizedBox(height: 8.0),
ElevatedButton(
onPressed: fooController.selectRandomFavorite,
child: Text('Select random favorite', style: textStyle),
),
const SizedBox(height: 32.0),
Text('Total things: ${things.length}', style: textStyle),
const SizedBox(height: 8.0),
Text('Favorite thing: $favorite', style: textStyle),
],
);
},
);
},
);
}
}
| devtools/packages/devtools_extensions/example/packages_with_extensions/foo/packages/foo/lib/src/foo_widget.dart/0 | {
"file_path": "devtools/packages/devtools_extensions/example/packages_with_extensions/foo/packages/foo/lib/src/foo_widget.dart",
"repo_id": "devtools",
"token_count": 948
} | 168 |
// 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 '../_simulated_devtools_environment.dart';
@visibleForTesting
class VmServiceConnectionDisplay extends StatelessWidget {
const VmServiceConnectionDisplay({
super.key,
required this.simController,
required this.connected,
});
@visibleForTesting
static const totalControlsHeight = 45.0;
@visibleForTesting
static const totalControlsWidth = 415.0;
final SimulatedDevToolsController simController;
final bool connected;
@override
Widget build(BuildContext context) {
return _UriConnectionDisplay(
simController: simController,
connected: connected,
connectedLabel: 'Debugging: ',
disconnectedLabel: 'Dart VM Service Connection',
disconnectedHint: '(e.g., http://127.0.0.1:60851/fH-kAEXc7MQ=/)',
onConnect: (value) => simController.updateVmServiceConnection(uri: value),
onDisconnect: () => simController.updateVmServiceConnection(uri: null),
currentConnection: () => serviceManager.serviceUri ?? '--',
help: const VmServiceHelp(),
);
}
}
class VmServiceHelp extends StatelessWidget {
const VmServiceHelp({super.key});
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
return DefaultTextStyle(
style: theme.regularTextStyle,
child: Column(
children: [
Text(
'If your DevTools extension interacts with a running Dart '
'application, then you will need to run a test application and '
'connect it to the simulated environment.\n\n'
'1. Run a Dart or Flutter application.\n',
style: theme.regularTextStyle,
),
RichText(
text: TextSpan(
style: theme.regularTextStyle,
text: '2. This will output text to the command line:',
children: [
TextSpan(
text: ' "A Dart VM Service is available at: '
'http://127.0.0.1:53985/6RVz1q0e9ok=". ',
style: theme.boldTextStyle,
),
const TextSpan(
text: 'Copy the VM Service URI and paste it into the "Dart '
'VM Service Connection" text field to connect.',
),
],
),
),
const SizedBox(height: defaultSpacing),
Text(
'In a real environment, your extension will inherit the existing '
'VM Service connection from DevTools.',
style: theme.subtleTextStyle,
),
],
),
);
}
}
| devtools/packages/devtools_extensions/lib/src/template/_simulated_devtools_environment/connection_ui/_vm_service_connect.dart/0 | {
"file_path": "devtools/packages/devtools_extensions/lib/src/template/_simulated_devtools_environment/connection_ui/_vm_service_connect.dart",
"repo_id": "devtools",
"token_count": 1152
} | 169 |
// Copyright 2021 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:vm_service/vm_service.dart';
/// Entries for each class statistics
class ClassHeapDetailStats {
ClassHeapDetailStats(
this.classRef, {
required int bytes,
int deltaBytes = 0,
required int instances,
int deltaInstances = 0,
bool traceAllocations = false,
}) : bytesCurrent = bytes,
bytesDelta = deltaBytes,
instancesCurrent = instances,
instancesDelta = deltaInstances,
isStacktraced = traceAllocations;
factory ClassHeapDetailStats.fromJson(Map<String, dynamic> json) {
final {'id': classId, 'name': className} = json['class'] as Map;
return ClassHeapDetailStats(
ClassRef(id: classId, name: className),
bytes: json['bytesCurrent'] as int,
deltaBytes: json['bytesDelta'] as int,
instances: json['instancesCurrent'] as int,
deltaInstances: json['instancesDelta'] as int,
traceAllocations: json['isStackedTraced'] as bool,
);
}
Map<String, dynamic> toJson() => {
'class': {'id': classRef.id, 'name': classRef.name},
'bytesCurrent': bytesCurrent,
'bytesDelta': bytesDelta,
'instancesCurrent': instancesCurrent,
'instancesDelta': instancesDelta,
'isStackedTraced': isStacktraced,
};
/// Version of ClassHeapDetailsStats payload.
static const version = 1;
final ClassRef classRef;
final int instancesCurrent;
int instancesDelta;
final int bytesCurrent;
int bytesDelta;
bool isStacktraced;
@override
String toString() => '[ClassHeapDetailStats class: ${classRef.name}, '
'count: $instancesCurrent, bytes: $bytesCurrent]';
}
| devtools/packages/devtools_shared/lib/src/memory/class_heap_detail_stats.dart/0 | {
"file_path": "devtools/packages/devtools_shared/lib/src/memory/class_heap_detail_stats.dart",
"repo_id": "devtools",
"token_count": 634
} | 170 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.