chore: migrate from pedantic to lints package

This commit is contained in:
Aleksey Kulikov 2021-07-20 16:59:26 +03:00
parent 2c28fddcec
commit 145af3054d
6 changed files with 8 additions and 7 deletions

View file

@ -55,4 +55,7 @@ class Oid {
return (other is Oid) &&
(bindings.compare(_oidPointer, other._oidPointer) == 1);
}
@override
int get hashCode => _oidPointer.address.hashCode;
}