Price class

Represents a price with price, type, info, and currency attributes.

Constructors

Price({double? price, String? type, String? info, String? currency})
Constructor for creating a Price object.
Price.parse(XmlElement element)
Factory method to parse an XmlElement and create a Price object from it.
factory

Properties

currency String?
The currency attribute value of the price.
final
hashCode int
The hash code for this object.
no setterinherited
info String?
The info attribute value of the price.
final
price double?
The price attribute value of the price.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type String?
The type attribute value of the price.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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