cake_wallet/cw_core/lib/enumerate.dart

14 lines
297 B
Dart
Raw Normal View History

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;
}