init project

This commit is contained in:
Kuloud
2023-12-22 21:23:24 +08:00
commit 1fb3d91106
461 changed files with 58770 additions and 0 deletions

View File

@ -0,0 +1,167 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
<meta name="description" content="API docs for the PolylineUpdates.from constructor from the Class PolylineUpdates class from the amap_map library, for the Dart programming language.">
<title>PolylineUpdates.from constructor - PolylineUpdates class - amap_map library - Dart API</title>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="../../static-assets/github.css">
<link rel="stylesheet" href="../../static-assets/styles.css">
<link rel="icon" href="../../static-assets/favicon.png">
</head>
<body data-base-href="../../"
data-using-base-href="false">
<div id="overlay-under-drawer"></div>
<header id="title">
<button id="sidenav-left-toggle" type="button">&nbsp;</button>
<ol class="breadcrumbs gt-separated dark hidden-xs">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">PolylineUpdates.from constructor</li>
</ol>
<div class="self-name">PolylineUpdates.from</div>
<form class="search navbar-right" role="search">
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<main>
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
<header id="header-search-sidebar" class="hidden-l">
<form class="search-sidebar" role="search">
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">PolylineUpdates.from constructor</li>
</ol>
<h5>PolylineUpdates class</h5>
<ol>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#constructors">Constructors</a></li>
<li><a href="../../amap_map/PolylineUpdates/PolylineUpdates.from.html">from</a></li>
<li class="section-title">
<a href="../../amap_map/PolylineUpdates-class.html#instance-properties">Properties</a>
</li>
<li><a href="../../amap_map/PolylineUpdates/hashCode.html">hashCode</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylineIdsToRemove.html">polylineIdsToRemove</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToAdd.html">polylinesToAdd</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToChange.html">polylinesToChange</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#instance-methods">Methods</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
<li><a href="../../amap_map/PolylineUpdates/toMap.html">toMap</a></li>
<li><a href="../../amap_map/PolylineUpdates/toString.html">toString</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#operators">Operators</a></li>
<li><a href="../../amap_map/PolylineUpdates/operator_equals.html">operator ==</a></li>
</ol>
</div><!--/.sidebar-offcanvas-left-->
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
<div><h1><span class="kind-constructor">PolylineUpdates.from</span> constructor </h1></div>
<section class="multi-line-signature">
<span class="name ">PolylineUpdates.from</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="from-param-previous"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Set-class.html">Set</a><span class="signature">&lt;<wbr><span class="type-parameter"><a href="../../amap_map/Polyline-class.html">Polyline</a></span>&gt;</span></span> <span class="parameter-name">previous</span>, </span></li>
<li><span class="parameter" id="from-param-current"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Set-class.html">Set</a><span class="signature">&lt;<wbr><span class="type-parameter"><a href="../../amap_map/Polyline-class.html">Polyline</a></span>&gt;</span></span> <span class="parameter-name">current</span></span></li>
</ol>)
</section>
<section class="desc markdown">
<p>通过polyline的前后更新集合构造一个polylineUpdates</p>
</section>
<section class="summary source-code" id="source">
<h2><span>Implementation</span></h2>
<pre class="language-dart"><code class="language-dart">PolylineUpdates.from(Set&lt;Polyline&gt; previous, Set&lt;Polyline&gt; current) {
if (previous == null) {
previous = Set&lt;Polyline&gt;.identity();
}
if (current == null) {
current = Set&lt;Polyline&gt;.identity();
}
final Map&lt;String, Polyline&gt; previousPolylines = keyByPolylineId(previous);
final Map&lt;String, Polyline&gt; currentPolylines = keyByPolylineId(current);
final Set&lt;String&gt; prevPolylineIds = previousPolylines.keys.toSet();
final Set&lt;String&gt; currentPolylineIds = currentPolylines.keys.toSet();
Polyline idToCurrentPolyline(String id) {
return currentPolylines[id];
}
final Set&lt;String&gt; _polylineIdsToRemove =
prevPolylineIds.difference(currentPolylineIds);
final Set&lt;Polyline&gt; _polylinesToAdd = currentPolylineIds
.difference(prevPolylineIds)
.map(idToCurrentPolyline)
.toSet();
bool hasChanged(Polyline current) {
final Polyline previous = previousPolylines[current.id];
return current != previous;
}
final Set&lt;Polyline&gt; _polylinesToChange = currentPolylineIds
.intersection(prevPolylineIds)
.map(idToCurrentPolyline)
.where(hasChanged)
.toSet();
polylinesToAdd = _polylinesToAdd;
polylineIdsToRemove = _polylineIdsToRemove;
polylinesToChange = _polylinesToChange;
}</code></pre>
</section>
</div> <!-- /.main-content -->
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
</div><!--/.sidebar-offcanvas-->
</main>
<footer>
<span class="no-break">
amap_map
1.1.0
</span>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="../../static-assets/typeahead.bundle.min.js"></script>
<script src="../../static-assets/highlight.pack.js"></script>
<script src="../../static-assets/URI.js"></script>
<script src="../../static-assets/script.js"></script>
</body>
</html>

View File

@ -0,0 +1,152 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
<meta name="description" content="API docs for the hashCode property from the PolylineUpdates class, for the Dart programming language.">
<title>hashCode property - PolylineUpdates class - amap_map library - Dart API</title>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="../../static-assets/github.css">
<link rel="stylesheet" href="../../static-assets/styles.css">
<link rel="icon" href="../../static-assets/favicon.png">
</head>
<body data-base-href="../../"
data-using-base-href="false">
<div id="overlay-under-drawer"></div>
<header id="title">
<button id="sidenav-left-toggle" type="button">&nbsp;</button>
<ol class="breadcrumbs gt-separated dark hidden-xs">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">hashCode property</li>
</ol>
<div class="self-name">hashCode</div>
<form class="search navbar-right" role="search">
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<main>
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
<header id="header-search-sidebar" class="hidden-l">
<form class="search-sidebar" role="search">
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">hashCode property</li>
</ol>
<h5>PolylineUpdates class</h5>
<ol>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#constructors">Constructors</a></li>
<li><a href="../../amap_map/PolylineUpdates/PolylineUpdates.from.html">from</a></li>
<li class="section-title">
<a href="../../amap_map/PolylineUpdates-class.html#instance-properties">Properties</a>
</li>
<li><a href="../../amap_map/PolylineUpdates/hashCode.html">hashCode</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylineIdsToRemove.html">polylineIdsToRemove</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToAdd.html">polylinesToAdd</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToChange.html">polylinesToChange</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#instance-methods">Methods</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
<li><a href="../../amap_map/PolylineUpdates/toMap.html">toMap</a></li>
<li><a href="../../amap_map/PolylineUpdates/toString.html">toString</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#operators">Operators</a></li>
<li><a href="../../amap_map/PolylineUpdates/operator_equals.html">operator ==</a></li>
</ol>
</div><!--/.sidebar-offcanvas-->
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
<div><h1><span class="kind-property">hashCode</span> property </h1></div>
<section id="getter">
<section class="multi-line-signature">
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
<span class="name ">hashCode</span>
<div class="features">override</div>
</section>
<section class="desc markdown">
<p>The hash code for this object.</p>
<p>A hash code is a single integer which represents the state of the object
that affects <a href="../../amap_map/PolylineUpdates/operator_equals.html">operator ==</a> comparisons.</p>
<p>All objects have hash codes.
The default hash code represents only the identity of the object,
the same way as the default <a href="../../amap_map/PolylineUpdates/operator_equals.html">operator ==</a> implementation only considers objects
equal if they are identical (see <a href="https://api.flutter.dev/flutter/dart-core/identityHashCode.html">identityHashCode</a>).</p>
<p>If <a href="../../amap_map/PolylineUpdates/operator_equals.html">operator ==</a> is overridden to use the object state instead,
the hash code must also be changed to represent that state.</p>
<p>Hash codes must be the same for objects that are equal to each other
according to <a href="../../amap_map/PolylineUpdates/operator_equals.html">operator ==</a>.
The hash code of an object should only change if the object changes
in a way that affects equality.
There are no further requirements for the hash codes.
They need not be consistent between executions of the same program
and there are no distribution guarantees.</p>
<p>Objects that are not equal are allowed to have the same hash code,
it is even technically allowed that all instances have the same hash code,
but if clashes happen too often, it may reduce the efficiency of hash-based
data structures like <a href="https://api.flutter.dev/flutter/dart-collection/HashSet-class.html">HashSet</a> or <a href="https://api.flutter.dev/flutter/dart-collection/HashMap-class.html">HashMap</a>.</p>
<p>If a subclass overrides <a href="../../amap_map/PolylineUpdates/hashCode.html">hashCode</a>, it should override the
<a href="../../amap_map/PolylineUpdates/operator_equals.html">operator ==</a> operator as well to maintain consistency.</p>
</section>
<section class="summary source-code" id="source">
<h2><span>Implementation</span></h2>
<pre class="language-dart"><code class="language-dart">@override
int get hashCode =&gt;
hashValues(polylinesToAdd, polylineIdsToRemove, polylinesToChange);</code></pre>
</section>
</section>
</div> <!-- /.main-content -->
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
</div><!--/.sidebar-offcanvas-->
</main>
<footer>
<span class="no-break">
amap_map
1.1.0
</span>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="../../static-assets/typeahead.bundle.min.js"></script>
<script src="../../static-assets/highlight.pack.js"></script>
<script src="../../static-assets/URI.js"></script>
<script src="../../static-assets/script.js"></script>
</body>
</html>

View File

@ -0,0 +1,167 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
<meta name="description" content="API docs for the operator == method from the PolylineUpdates class, for the Dart programming language.">
<title>operator == method - PolylineUpdates class - amap_map library - Dart API</title>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="../../static-assets/github.css">
<link rel="stylesheet" href="../../static-assets/styles.css">
<link rel="icon" href="../../static-assets/favicon.png">
</head>
<body data-base-href="../../"
data-using-base-href="false">
<div id="overlay-under-drawer"></div>
<header id="title">
<button id="sidenav-left-toggle" type="button">&nbsp;</button>
<ol class="breadcrumbs gt-separated dark hidden-xs">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">operator == method</li>
</ol>
<div class="self-name">operator ==</div>
<form class="search navbar-right" role="search">
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<main>
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
<header id="header-search-sidebar" class="hidden-l">
<form class="search-sidebar" role="search">
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">operator == method</li>
</ol>
<h5>PolylineUpdates class</h5>
<ol>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#constructors">Constructors</a></li>
<li><a href="../../amap_map/PolylineUpdates/PolylineUpdates.from.html">from</a></li>
<li class="section-title">
<a href="../../amap_map/PolylineUpdates-class.html#instance-properties">Properties</a>
</li>
<li><a href="../../amap_map/PolylineUpdates/hashCode.html">hashCode</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylineIdsToRemove.html">polylineIdsToRemove</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToAdd.html">polylinesToAdd</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToChange.html">polylinesToChange</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#instance-methods">Methods</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
<li><a href="../../amap_map/PolylineUpdates/toMap.html">toMap</a></li>
<li><a href="../../amap_map/PolylineUpdates/toString.html">toString</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#operators">Operators</a></li>
<li><a href="../../amap_map/PolylineUpdates/operator_equals.html">operator ==</a></li>
</ol>
</div><!--/.sidebar-offcanvas-->
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
<div><h1><span class="kind-method">operator ==</span> method </h1></div>
<section class="multi-line-signature">
<div>
<ol class="annotation-list">
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
</ol>
</div>
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
<span class="name ">operator ==</span>
(<wbr><ol class="parameter-list"><li><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span></li>
</ol>)
<div class="features">override</div>
</section>
<section class="desc markdown">
<p>The equality operator.</p>
<p>The default behavior for all <a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a>s is to return true if and
only if <code>this</code> and <code>other</code> are the same object.</p>
<p>Override this method to specify a different equality relation on
a class. The overriding method must still be an equivalence relation.
That is, it must be:</p>
<ul>
<li>
<p>Total: It must return a boolean for all arguments. It should never throw
or return <code>null</code>.</p>
</li>
<li>
<p>Reflexive: For all objects <code>o</code>, <code>o == o</code> must be true.</p>
</li>
<li>
<p>Symmetric: For all objects <code>o1</code> and <code>o2</code>, <code>o1 == o2</code> and <code>o2 == o1</code> must
either both be true, or both be false.</p>
</li>
<li>
<p>Transitive: For all objects <code>o1</code>, <code>o2</code>, and <code>o3</code>, if <code>o1 == o2</code> and
<code>o2 == o3</code> are true, then <code>o1 == o3</code> must be true.</p>
</li>
</ul>
<p>The method should also be consistent over time,
so whether two objects are equal should only change
if at least one of the objects was modified.</p>
<p>If a subclass overrides the equality operator it should override
the <a href="../../amap_map/PolylineUpdates/hashCode.html">hashCode</a> method as well to maintain consistency.</p>
</section>
<section class="summary source-code" id="source">
<h2><span>Implementation</span></h2>
<pre class="language-dart"><code class="language-dart">@override
bool operator ==(Object other) {
if (identical(this, other)) return true;
if (other.runtimeType != runtimeType) return false;
final PolylineUpdates typedOther = other;
return setEquals(polylinesToAdd, typedOther.polylinesToAdd) &amp;&amp;
setEquals(polylineIdsToRemove, typedOther.polylineIdsToRemove) &amp;&amp;
setEquals(polylinesToChange, typedOther.polylinesToChange);
}</code></pre>
</section>
</div> <!-- /.main-content -->
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
</div><!--/.sidebar-offcanvas-->
</main>
<footer>
<span class="no-break">
amap_map
1.1.0
</span>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="../../static-assets/typeahead.bundle.min.js"></script>
<script src="../../static-assets/highlight.pack.js"></script>
<script src="../../static-assets/URI.js"></script>
<script src="../../static-assets/script.js"></script>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
<meta name="description" content="API docs for the polylineIdsToRemove property from the PolylineUpdates class, for the Dart programming language.">
<title>polylineIdsToRemove property - PolylineUpdates class - amap_map library - Dart API</title>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="../../static-assets/github.css">
<link rel="stylesheet" href="../../static-assets/styles.css">
<link rel="icon" href="../../static-assets/favicon.png">
</head>
<body data-base-href="../../"
data-using-base-href="false">
<div id="overlay-under-drawer"></div>
<header id="title">
<button id="sidenav-left-toggle" type="button">&nbsp;</button>
<ol class="breadcrumbs gt-separated dark hidden-xs">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">polylineIdsToRemove property</li>
</ol>
<div class="self-name">polylineIdsToRemove</div>
<form class="search navbar-right" role="search">
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<main>
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
<header id="header-search-sidebar" class="hidden-l">
<form class="search-sidebar" role="search">
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">polylineIdsToRemove property</li>
</ol>
<h5>PolylineUpdates class</h5>
<ol>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#constructors">Constructors</a></li>
<li><a href="../../amap_map/PolylineUpdates/PolylineUpdates.from.html">from</a></li>
<li class="section-title">
<a href="../../amap_map/PolylineUpdates-class.html#instance-properties">Properties</a>
</li>
<li><a href="../../amap_map/PolylineUpdates/hashCode.html">hashCode</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylineIdsToRemove.html">polylineIdsToRemove</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToAdd.html">polylinesToAdd</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToChange.html">polylinesToChange</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#instance-methods">Methods</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
<li><a href="../../amap_map/PolylineUpdates/toMap.html">toMap</a></li>
<li><a href="../../amap_map/PolylineUpdates/toString.html">toString</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#operators">Operators</a></li>
<li><a href="../../amap_map/PolylineUpdates/operator_equals.html">operator ==</a></li>
</ol>
</div><!--/.sidebar-offcanvas-->
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
<div><h1><span class="kind-property">polylineIdsToRemove</span> property </h1></div>
<section class="multi-line-signature">
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/Set-class.html">Set</a><span class="signature">&lt;<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>&gt;</span></span>
<span class="name ">polylineIdsToRemove</span>
<div class="features">read / write</div>
</section>
<section class="desc markdown">
<p>需要删除的plyline的id集合</p>
</section>
<section class="summary source-code" id="source">
<h2><span>Implementation</span></h2>
<pre class="language-dart"><code class="language-dart">Set<String> polylineIdsToRemove
</code></pre>
</section>
</div> <!-- /.main-content -->
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
</div><!--/.sidebar-offcanvas-->
</main>
<footer>
<span class="no-break">
amap_map
1.1.0
</span>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="../../static-assets/typeahead.bundle.min.js"></script>
<script src="../../static-assets/highlight.pack.js"></script>
<script src="../../static-assets/URI.js"></script>
<script src="../../static-assets/script.js"></script>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
<meta name="description" content="API docs for the polylinesToAdd property from the PolylineUpdates class, for the Dart programming language.">
<title>polylinesToAdd property - PolylineUpdates class - amap_map library - Dart API</title>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="../../static-assets/github.css">
<link rel="stylesheet" href="../../static-assets/styles.css">
<link rel="icon" href="../../static-assets/favicon.png">
</head>
<body data-base-href="../../"
data-using-base-href="false">
<div id="overlay-under-drawer"></div>
<header id="title">
<button id="sidenav-left-toggle" type="button">&nbsp;</button>
<ol class="breadcrumbs gt-separated dark hidden-xs">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">polylinesToAdd property</li>
</ol>
<div class="self-name">polylinesToAdd</div>
<form class="search navbar-right" role="search">
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<main>
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
<header id="header-search-sidebar" class="hidden-l">
<form class="search-sidebar" role="search">
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">polylinesToAdd property</li>
</ol>
<h5>PolylineUpdates class</h5>
<ol>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#constructors">Constructors</a></li>
<li><a href="../../amap_map/PolylineUpdates/PolylineUpdates.from.html">from</a></li>
<li class="section-title">
<a href="../../amap_map/PolylineUpdates-class.html#instance-properties">Properties</a>
</li>
<li><a href="../../amap_map/PolylineUpdates/hashCode.html">hashCode</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylineIdsToRemove.html">polylineIdsToRemove</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToAdd.html">polylinesToAdd</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToChange.html">polylinesToChange</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#instance-methods">Methods</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
<li><a href="../../amap_map/PolylineUpdates/toMap.html">toMap</a></li>
<li><a href="../../amap_map/PolylineUpdates/toString.html">toString</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#operators">Operators</a></li>
<li><a href="../../amap_map/PolylineUpdates/operator_equals.html">operator ==</a></li>
</ol>
</div><!--/.sidebar-offcanvas-->
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
<div><h1><span class="kind-property">polylinesToAdd</span> property </h1></div>
<section class="multi-line-signature">
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/Set-class.html">Set</a><span class="signature">&lt;<wbr><span class="type-parameter"><a href="../../amap_map/Polyline-class.html">Polyline</a></span>&gt;</span></span>
<span class="name ">polylinesToAdd</span>
<div class="features">read / write</div>
</section>
<section class="desc markdown">
<p>用于添加polyline的集合</p>
</section>
<section class="summary source-code" id="source">
<h2><span>Implementation</span></h2>
<pre class="language-dart"><code class="language-dart">Set<Polyline> polylinesToAdd
</code></pre>
</section>
</div> <!-- /.main-content -->
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
</div><!--/.sidebar-offcanvas-->
</main>
<footer>
<span class="no-break">
amap_map
1.1.0
</span>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="../../static-assets/typeahead.bundle.min.js"></script>
<script src="../../static-assets/highlight.pack.js"></script>
<script src="../../static-assets/URI.js"></script>
<script src="../../static-assets/script.js"></script>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
<meta name="description" content="API docs for the polylinesToChange property from the PolylineUpdates class, for the Dart programming language.">
<title>polylinesToChange property - PolylineUpdates class - amap_map library - Dart API</title>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="../../static-assets/github.css">
<link rel="stylesheet" href="../../static-assets/styles.css">
<link rel="icon" href="../../static-assets/favicon.png">
</head>
<body data-base-href="../../"
data-using-base-href="false">
<div id="overlay-under-drawer"></div>
<header id="title">
<button id="sidenav-left-toggle" type="button">&nbsp;</button>
<ol class="breadcrumbs gt-separated dark hidden-xs">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">polylinesToChange property</li>
</ol>
<div class="self-name">polylinesToChange</div>
<form class="search navbar-right" role="search">
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<main>
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
<header id="header-search-sidebar" class="hidden-l">
<form class="search-sidebar" role="search">
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">polylinesToChange property</li>
</ol>
<h5>PolylineUpdates class</h5>
<ol>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#constructors">Constructors</a></li>
<li><a href="../../amap_map/PolylineUpdates/PolylineUpdates.from.html">from</a></li>
<li class="section-title">
<a href="../../amap_map/PolylineUpdates-class.html#instance-properties">Properties</a>
</li>
<li><a href="../../amap_map/PolylineUpdates/hashCode.html">hashCode</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylineIdsToRemove.html">polylineIdsToRemove</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToAdd.html">polylinesToAdd</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToChange.html">polylinesToChange</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#instance-methods">Methods</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
<li><a href="../../amap_map/PolylineUpdates/toMap.html">toMap</a></li>
<li><a href="../../amap_map/PolylineUpdates/toString.html">toString</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#operators">Operators</a></li>
<li><a href="../../amap_map/PolylineUpdates/operator_equals.html">operator ==</a></li>
</ol>
</div><!--/.sidebar-offcanvas-->
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
<div><h1><span class="kind-property">polylinesToChange</span> property </h1></div>
<section class="multi-line-signature">
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/Set-class.html">Set</a><span class="signature">&lt;<wbr><span class="type-parameter"><a href="../../amap_map/Polyline-class.html">Polyline</a></span>&gt;</span></span>
<span class="name ">polylinesToChange</span>
<div class="features">read / write</div>
</section>
<section class="desc markdown">
<p>用于更新polyline的集合</p>
</section>
<section class="summary source-code" id="source">
<h2><span>Implementation</span></h2>
<pre class="language-dart"><code class="language-dart">Set<Polyline> polylinesToChange
</code></pre>
</section>
</div> <!-- /.main-content -->
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
</div><!--/.sidebar-offcanvas-->
</main>
<footer>
<span class="no-break">
amap_map
1.1.0
</span>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="../../static-assets/typeahead.bundle.min.js"></script>
<script src="../../static-assets/highlight.pack.js"></script>
<script src="../../static-assets/URI.js"></script>
<script src="../../static-assets/script.js"></script>
</body>
</html>

View File

@ -0,0 +1,140 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
<meta name="description" content="API docs for the toMap method from the PolylineUpdates class, for the Dart programming language.">
<title>toMap method - PolylineUpdates class - amap_map library - Dart API</title>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="../../static-assets/github.css">
<link rel="stylesheet" href="../../static-assets/styles.css">
<link rel="icon" href="../../static-assets/favicon.png">
</head>
<body data-base-href="../../"
data-using-base-href="false">
<div id="overlay-under-drawer"></div>
<header id="title">
<button id="sidenav-left-toggle" type="button">&nbsp;</button>
<ol class="breadcrumbs gt-separated dark hidden-xs">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">toMap method</li>
</ol>
<div class="self-name">toMap</div>
<form class="search navbar-right" role="search">
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<main>
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
<header id="header-search-sidebar" class="hidden-l">
<form class="search-sidebar" role="search">
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">toMap method</li>
</ol>
<h5>PolylineUpdates class</h5>
<ol>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#constructors">Constructors</a></li>
<li><a href="../../amap_map/PolylineUpdates/PolylineUpdates.from.html">from</a></li>
<li class="section-title">
<a href="../../amap_map/PolylineUpdates-class.html#instance-properties">Properties</a>
</li>
<li><a href="../../amap_map/PolylineUpdates/hashCode.html">hashCode</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylineIdsToRemove.html">polylineIdsToRemove</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToAdd.html">polylinesToAdd</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToChange.html">polylinesToChange</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#instance-methods">Methods</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
<li><a href="../../amap_map/PolylineUpdates/toMap.html">toMap</a></li>
<li><a href="../../amap_map/PolylineUpdates/toString.html">toString</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#operators">Operators</a></li>
<li><a href="../../amap_map/PolylineUpdates/operator_equals.html">operator ==</a></li>
</ol>
</div><!--/.sidebar-offcanvas-->
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
<div><h1><span class="kind-method">toMap</span> method </h1></div>
<section class="multi-line-signature">
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/Map-class.html">Map</a><span class="signature">&lt;<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>, <span class="type-parameter">dynamic</span>&gt;</span></span>
<span class="name ">toMap</span>
(<wbr>)
</section>
<section class="desc markdown">
<p>将对象装换为可序列化的对象</p>
</section>
<section class="summary source-code" id="source">
<h2><span>Implementation</span></h2>
<pre class="language-dart"><code class="language-dart">Map&lt;String, dynamic&gt; toMap() {
final Map&lt;String, dynamic&gt; updateMap = &lt;String, dynamic&gt;{};
void addIfNonNull(String fieldName, dynamic value) {
if (value != null) {
updateMap[fieldName] = value;
}
}
addIfNonNull(&#39;polylinesToAdd&#39;, serializeOverlaySet(polylinesToAdd));
addIfNonNull(&#39;polylinesToChange&#39;, serializeOverlaySet(polylinesToChange));
addIfNonNull(&#39;polylineIdsToRemove&#39;, polylineIdsToRemove.toList());
return updateMap;
}</code></pre>
</section>
</div> <!-- /.main-content -->
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
</div><!--/.sidebar-offcanvas-->
</main>
<footer>
<span class="no-break">
amap_map
1.1.0
</span>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="../../static-assets/typeahead.bundle.min.js"></script>
<script src="../../static-assets/highlight.pack.js"></script>
<script src="../../static-assets/URI.js"></script>
<script src="../../static-assets/script.js"></script>
</body>
</html>

View File

@ -0,0 +1,136 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
<meta name="description" content="API docs for the toString method from the PolylineUpdates class, for the Dart programming language.">
<title>toString method - PolylineUpdates class - amap_map library - Dart API</title>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="../../static-assets/github.css">
<link rel="stylesheet" href="../../static-assets/styles.css">
<link rel="icon" href="../../static-assets/favicon.png">
</head>
<body data-base-href="../../"
data-using-base-href="false">
<div id="overlay-under-drawer"></div>
<header id="title">
<button id="sidenav-left-toggle" type="button">&nbsp;</button>
<ol class="breadcrumbs gt-separated dark hidden-xs">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">toString method</li>
</ol>
<div class="self-name">toString</div>
<form class="search navbar-right" role="search">
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<main>
<div id="dartdoc-sidebar-left" class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
<header id="header-search-sidebar" class="hidden-l">
<form class="search-sidebar" role="search">
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
</form>
</header>
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
<li><a href="../../index.html">amap_map</a></li>
<li><a href="../../amap_map/amap_map-library.html">amap_map</a></li>
<li><a href="../../amap_map/PolylineUpdates-class.html">PolylineUpdates</a></li>
<li class="self-crumb">toString method</li>
</ol>
<h5>PolylineUpdates class</h5>
<ol>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#constructors">Constructors</a></li>
<li><a href="../../amap_map/PolylineUpdates/PolylineUpdates.from.html">from</a></li>
<li class="section-title">
<a href="../../amap_map/PolylineUpdates-class.html#instance-properties">Properties</a>
</li>
<li><a href="../../amap_map/PolylineUpdates/hashCode.html">hashCode</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylineIdsToRemove.html">polylineIdsToRemove</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToAdd.html">polylinesToAdd</a></li>
<li><a href="../../amap_map/PolylineUpdates/polylinesToChange.html">polylinesToChange</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#instance-methods">Methods</a></li>
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
<li><a href="../../amap_map/PolylineUpdates/toMap.html">toMap</a></li>
<li><a href="../../amap_map/PolylineUpdates/toString.html">toString</a></li>
<li class="section-title"><a href="../../amap_map/PolylineUpdates-class.html#operators">Operators</a></li>
<li><a href="../../amap_map/PolylineUpdates/operator_equals.html">operator ==</a></li>
</ol>
</div><!--/.sidebar-offcanvas-->
<div id="dartdoc-main-content" class="col-xs-12 col-sm-9 col-md-8 main-content">
<div><h1><span class="kind-method">toString</span> method </h1></div>
<section class="multi-line-signature">
<div>
<ol class="annotation-list">
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
</ol>
</div>
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
<span class="name ">toString</span>
(<wbr>)
<div class="features">override</div>
</section>
<section class="desc markdown">
<p>Returns a string representation of this object.</p>
</section>
<section class="summary source-code" id="source">
<h2><span>Implementation</span></h2>
<pre class="language-dart"><code class="language-dart">@override
String toString() {
return &#39;_PolylineUpdates{polylinesToAdd: $polylinesToAdd, &#39;
&#39;polylineIdsToRemove: $polylineIdsToRemove, &#39;
&#39;polylinesToChange: $polylinesToChange}&#39;;
}</code></pre>
</section>
</div> <!-- /.main-content -->
<div id="dartdoc-sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
</div><!--/.sidebar-offcanvas-->
</main>
<footer>
<span class="no-break">
amap_map
1.1.0
</span>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="../../static-assets/typeahead.bundle.min.js"></script>
<script src="../../static-assets/highlight.pack.js"></script>
<script src="../../static-assets/URI.js"></script>
<script src="../../static-assets/script.js"></script>
</body>
</html>