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
|
@ -133,4 +133,9 @@ class Tag {
|
|||
|
||||
/// Releases memory allocated for tag object.
|
||||
void free() => bindings.free(_tagPointer);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'Tag{oid: $oid, name: $name, message: $message, target: $target, tagger: $tagger}';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue