DuplicateNetworkException class
Exception thrown in Registry constructor when _items
already has an item with the RegistryItem.network.
Example:
final item1 = RegistryItem.fromJson({
"prefix": 1,
"network": "example",
});
final item2 = RegistryItem.fromJson({
"prefix": 2,
"network": "example",
});
final registry = Registry([item1, item2]);
- Implemented types
Constructors
- DuplicateNetworkException(String network)
-
const
Properties
Methods
-
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.
inherited