type property

String? type
getter/setter pair

The type of range. Possible string values are:

  • "RANGE_TYPE_UNSPECIFIED" : Unspecified range type. This value must not be used.
  • "FIXED_RANGE" : A fixed range. Both the start_index and end_index must be specified.
  • "FROM_START_INDEX" : Starts the range at start_index and continues until the end of the collection. The end_index must not be specified.
  • "ALL" : Sets the range to be the whole length of the collection. Both the start_index and the end_index must not be specified.

Implementation

core.String? type;