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