mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 04:39:07 -04:00
feat: add more toString overrides for debugging
This commit is contained in:
parent
beed516c89
commit
9f346c99f7
26 changed files with 175 additions and 18 deletions
|
@ -75,12 +75,12 @@ class Signature {
|
|||
other._signaturePointer.ref.when.sign);
|
||||
}
|
||||
|
||||
@override
|
||||
int get hashCode => _signaturePointer.address.hashCode;
|
||||
|
||||
/// Releases memory allocated for signature object.
|
||||
void free() => bindings.free(_signaturePointer);
|
||||
|
||||
@override
|
||||
int get hashCode => _signaturePointer.address.hashCode;
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'Signature{name: $name, email: $email, time: $time, offset: $offset}';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue