crossplat_objectid 2.1.4 crossplat_objectid: ^2.1.4 copied to clipboard
Cross-platform BSON ObjectId implementation in Dart. Use it to generate or parse MongoDB ObjectIDs on server, web or Flutter.
// Copyright (c) 2016, Kwang Yul Seo. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.
import 'package:crossplat_objectid/crossplat_objectid.dart';
main() {
ObjectId id1 = ObjectId();
print(id1.toHexString());
ObjectId id2 = ObjectId.fromHexString('54495ad94c934721ede76d90');
print(id2.timestamp);
print(id2.machineId);
print(id2.processId);
print(id2.counter);
}