deepEqual static method

bool deepEqual(
  1. Object? previous,
  2. Object? next
)

Implementation

static bool deepEqual(Object? previous, Object? next) {
  return const DeepCollectionEquality.unordered().equals(previous, next);
}