hasUnixMicroseconds function
Matches the Unix microseconds of a HasInstant.
Implementation
Matcher hasUnixMicroseconds(Object matcher) => isA<HasInstant>().having(
(t) => t.toInstant().unixTimestamp.inMicroseconds,
'unix microseconds',
matcher);