ISO8601 method

RqlISO8601 ISO8601(
  1. String stringTime, [
  2. dynamic defaultTimeZone = "Z"
])

Create a time object based on an iso8601 date-time string (e.g. '2013-01-01T01:01:01+00:00'). We support all valid ISO 8601 formats except for week dates. If you pass an ISO 8601 date-time without a time zone, you must specify the time zone with the optarg default_timezone.

Implementation

// ignore: non_constant_identifier_names
RqlISO8601 ISO8601(String stringTime, [defaultTimeZone = "Z"]) =>
    RqlISO8601(stringTime, defaultTimeZone);