Money class
Represents an amount of money with its currency type.
Constructors
- Money()
- Money.fromJson(Map _json)
Properties
- currencyCode ↔ String
-
The 3-letter currency code defined in ISO 4217.
read / write
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- nanos ↔ int
-
Number of nano (10^-9) units of the amount. The value must be between
-999,999,999 and +999,999,999 inclusive. If
units
is positive,nanos
must be positive or zero. Ifunits
is zero,nanos
can be positive, zero, or negative. Ifunits
is negative,nanos
must be negative or zero. For example $-1.75 is represented asunits
=-1 andnanos
=-750,000,000.read / write - runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- units ↔ String
-
The whole units of the amount. For example if
currencyCode
is"USD"
, then 1 unit is one US dollar.read / write
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toJson(
) → Map< String, Object> -
toString(
) → String -
Returns a string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited