mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
14 lines
297 B
Dart
14 lines
297 B
Dart
|
abstract class Enumerate {
|
||
|
String get value;
|
||
|
|
||
|
@override
|
||
|
operator ==(other) {
|
||
|
if (identical(other, this)) return true;
|
||
|
if (other is! Enumerate) return false;
|
||
|
return other.runtimeType == runtimeType && value == other.value;
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
int get hashCode => value.hashCode;
|
||
|
}
|