operator == method

  • @override

bool operator == (dynamic other)

override

Implementation

@override
bool operator ==(dynamic other) {
  if (identical(this, other)) {
    return true;
  }
  if (runtimeType != other.runtimeType) {
    return false;
  }
  final Struct otherStruct = other;
  return deepEquals($fields, otherStruct.$fields);
}