You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fluffychat/lib/pangea/constructs/construct_form.dart

22 lines
432 B
Dart

import 'package:fluffychat/pangea/constructs/construct_identifier.dart';
class ConstructForm {
String form;
ConstructIdentifier cId;
ConstructForm(
this.form,
this.cId,
);
@override
bool operator ==(Object other) {
if (identical(this, other)) return true;
return other is ConstructForm && other.form == form && other.cId == cId;
}
@override
int get hashCode => form.hashCode ^ cId.hashCode;
}