LibraryName class

The name of a widgets library in the RFW package.

Libraries are typically referred to with names like "core.widgets" or "com.example.shopping.cart". This class represents these names as lists of tokens, in those cases ['core', 'widgets'] and ['com', 'example', 'shopping', 'cart'], for example.

Implemented types
Annotations

Constructors

LibraryName(List<String> parts)
Wrap the given list as a LibraryName.
const

Properties

hashCode int
The hash code for this object.
no setteroverride
parts List<String>
The components of the structured library name.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

compareTo(LibraryName other) int
Compares this object to another object.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override