hasSecond function

Matcher hasSecond(
  1. Object? matcher
)

Matches the second from a HasTime.

Implementation

Matcher hasSecond(Object? matcher) =>
    isA<HasTime>().having((t) => t.second, 'second', matcher);