This repository has been archived on 2022-04-20. You can view files and clone it, but cannot push or open issues or pull requests.
app/lib/api/client.dart

13 lines
204 B
Dart

class Client {
final String _token;
Client(this._token);
bool operator ==(dynamic otherClient) {
return otherClient._token == _token;
}
@override
int get hashCode => _token.hashCode;
}