2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2026-04-02 09:38:20 +00:00
This commit is contained in:
2022-08-08 21:20:46 +03:00
parent 69f16dae18
commit c9ead2dabd
3 changed files with 25 additions and 19 deletions

View File

@@ -5,7 +5,7 @@ class Guid {
Guid(this._data) {}
Guid.fromString(String data) {
Guid.parse(String data) {
_data = DC.fromHex(data, '');
}