0
Dart equatable
123456789101112131415class Person { final String name; const Person(this.name); @override bool operator ==(Object other) => identical(this, other) || other is Person && ru
123456789101112131415class Person { final String name; const Person(this.name); @override bool operator ==(Object other) => identical(this, other) || other is Person && ru