expectIdentical function
Implementation
void expectIdentical(
Object? actual,
Object? matcher, {
String? reason,
Object? /* String|bool */ skip,
}) {
expect(
IdenticalMatcherDescription(actual),
isIdentical(matcher),
reason: reason,
skip: skip,
);
}