equals method

  1. @override
bool equals(
  1. GetAllCUsbBody value,
  2. GetAllCUsbBody other,
  3. MappingContext context
)
inherited

The mapping method to compare value and other for equality.

Implementation

@override
bool equals(T value, T other, MappingContext context) {
  if (value.runtimeType.base != other.runtimeType.base) {
    return false;
  }
  return _members.every((f) {
    return context.container.isEqual(f.get(value), f.get(other));
  });
}