feat(blame): add bindings and api

This commit is contained in:
Aleksey Kulikov 2021-10-01 13:43:44 +03:00
parent 9686d93935
commit 5ee0662376
62 changed files with 1390 additions and 4 deletions

View file

@ -80,4 +80,9 @@ class Signature {
/// Releases memory allocated for signature object.
void free() => bindings.free(_signaturePointer);
@override
String toString() {
return 'Signature{name: $name, email: $email, time: $time, offset: $offset}';
}
}