Compare commits

...

10 Commits

3 changed files with 14 additions and 5 deletions
+1 -1
View File
@@ -3,6 +3,6 @@
<version>1</version>
</component>
<component name="whatsNew">
<shownVersion>2022.3.1rc6</shownVersion>
<shownVersion>2022.3.1rc7</shownVersion>
</component>
</application>
+2 -2
View File
@@ -1,7 +1,7 @@
<application>
<component name="UISettings">
<option name="MAX_LOOKUP_LIST_HEIGHT" value="22" />
<option name="MAX_LOOKUP_WIDTH2" value="1134" />
<option name="MAX_LOOKUP_LIST_HEIGHT" value="23" />
<option name="MAX_LOOKUP_WIDTH2" value="591" />
<option name="OVERRIDE_NONIDEA_LAF_FONTS" value="true" />
<option name="RIGHT_HORIZONTAL_SPLIT" value="true" />
<option name="SHOW_MAIN_TOOLBAR" value="true" />
+11 -2
View File
@@ -4,6 +4,15 @@
</component>
<component name="Translation.States">
<histories>
<item value="{@template cloud_firestore.collection_reference.doc} Returns a `DocumentReference` with the provided path. If no [path] is provided, an auto-generated ID is used. The unique key generated is prefixed with a client-generated timestamp so that the resulting list will be chronologically-sorted. {@endtemplate}" />
<item value="Whether the collection contains an element equal to [element]. This operation will check each element in order for being equal to [element], unless it has a more efficient way to find an element equal to [element]. The equality used to determine whether [element] is equal to an element of the iterable defaults to the [Object.==] of the element. Some types of iterable may have a different equality used for its elements. For example, a [Set] may have a custom equality (see [Set.identity]) that its `contains` uses. Likewise the `Iterable` returned by a [Map.keys] call should use the same equality that the `Map` uses for keys." />
<item value="The value for the given [key], or `null` if [key] is not in the map. Some maps allow `null` as a value. For those maps, a lookup using this operator cannot distinguish between a key not being in the map, and the key being there with a `null` value. Methods like [containsKey] or [putIfAbsent] can be used if the distinction is important." />
<item value="Whether this map contains the given [key]. Returns true if any of the keys in the map are equal to `key` according to the equality used by the map. ```dart final moonCount = &lt;String, int&gt;{'Mercury': 0, 'Venus': 0, 'Earth': 1, 'Mars': 2, 'Jupiter': 79, 'Saturn': 82, 'Uranus': 27, 'Neptune': 14 }; final containsUranus = moonCount.containsKey('Uranus'); true final containsPluto = moonCount.containsKey('Pluto'); false ```" />
<item value="Injects an `Instance&lt;S&gt;` in memory. No need to define the generic type `&lt;[S]&gt;` as it's inferred from the [dependency] parameter. - [dependency] The Instance to be injected. - [tag] optionally, use a [tag] as an &quot;id&quot; to create multiple records of the same `Type&lt;S&gt;` the [tag] does not conflict with the same tags used by other dependencies Types. - [permanent] keeps the Instance in memory and persist it, not following `Get.smartManagement` rules. Although, can be removed by `GetInstance.reset()` and `Get.delete()` - [builder] If defined, the [dependency] must be returned from here" />
<item value="actions" />
<item value="leading" />
<item value="condition" />
<item value="Rebuilds `GetBuilder` each time you call `update()`; Can take a List of [ids], that will only update the matching `GetBuilder( id: )`, [ids] can be reused among `GetBuilders` like group tags. The update will only notify the Widgets, if [condition] is true." />
<item value="Returns a JSON Web Token (JWT) used to identify the user to a Firebase service. Returns the current token if it has not expired. Otherwise, this will refresh the token and return a new one. If [forceRefresh] is `true`, the token returned will be refreshed regardless of token expiration." />
<item value="Runtime representation of a type. Type objects represent types. A type object can be created in several ways: By a type literal, a type name occurring as an expression, like `Type type = int;`, or a type variable occurring as an expression, like `Type type = T;`. By reading the run-time type of an object, like `Type type = o.runtimeType;`. Through `dart:mirrors`. A type object is intended as an entry point for using `dart:mirrors`. The only operations supported are comparing to other type objects for equality, and converting it to a string for debugging." />
<item value="use Null Safety Syntax" />
@@ -33,8 +42,8 @@
</histories>
<option name="languageScores">
<map>
<entry key="CHINESE" value="26" />
<entry key="ENGLISH" value="27" />
<entry key="CHINESE" value="35" />
<entry key="ENGLISH" value="36" />
</map>
</option>
</component>