hasUnixMicroseconds function

Matcher hasUnixMicroseconds(
  1. Object matcher
)

Matches the Unix microseconds of a HasInstant.

Implementation

Matcher hasUnixMicroseconds(Object matcher) => isA<HasInstant>().having(
    (t) => t.toInstant().unixTimestamp.inMicroseconds,
    'unix microseconds',
    matcher);