objectid 2.0.0-nullsafety.0
objectid: ^2.0.0-nullsafety.0 copied to clipboard
Blazing fast, cross-platform ObjectId implementation for the dart language.
2.0.0-nullsafety.0 #
- Initial move towards nullsafety
- Updated changelog (removed release dates)
1.1.1 #
- Use StringBuffer instead of String class for hexString generation (almost 5 times faster generation of hexStrings).
1.1.0 #
- Migrate package to effective dart style.
- 100% tests coverage.
- Improve readme docs.
- Added badges.
- Added benchmark section.
1.0.0 #
- Added readme documentation
0.2.0 #
- Added unit tests
- Restructured projects
- Added
fromBytes
,fromValues
andfromTimestamp
constructors. - Renamed
generationTime
property totimestamp
. - Added missing
hashCode
implementation based onmurmurHash2
. - Added
bytes
property.
0.1.0-dev.1 #
- Added ObjectId class.
- Added
ObjectId()
andObjectId.fromHexString()
constructors. - Added
isValid
helper method. - Added equality operator overload
==
. - Added
hexString
andgenerationTime
getters with caching support.
- Added