hasMinute function

Matcher hasMinute(
  1. Object? matcher
)

Matches the minute from a HasTime.

Implementation

Matcher hasMinute(Object? matcher) =>
    isA<HasTime>().having((d) => d.minute, 'minute', matcher);