object_reference 1.1.0 copy "object_reference: ^1.1.0" to clipboard
object_reference: ^1.1.0 copied to clipboard

A simple object reference system in dart.

1.1.0 #

  • Removed dependencies of Flutter SDK

  • Renamed RefExtension on Object to RefObjectExtension on Object

  • Added RefExtension<T> on Ref<T>

  • Increased Dart SDK constraints to 3.0.0

1.0.2 #

  • ref.dart:

    • Changed calculation of hashCode, because if the internal _ref held an Iterable as it's value, then calling hashList, on the _ref caused an AssertationError.

      • OLD

          int get hashCode => hashValues(_ref.hashCode, hashList(_ref), value.hashCode);
        
      • NEW

          int get hashCode => hashValues(_ref.hashCode, value.hashCode);
        

1.0.1 #

  • ref.dart:

    • Added factory constructors Ref.mutable and Ref.constant.

1.0.0 #

For detailed information of the added files, read their dartdoc.


0.0.1 #

  • Initial release.
3
likes
110
pub points
58%
popularity

Publisher

unverified uploader

A simple object reference system in dart.

Repository (GitLab)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

More

Packages that depend on object_reference