Money class final
Represents an amount of money with its currency type.
- Inheritance
-
- Object
- ProtoMessage
- Money
Constructors
Properties
- currencyCode → String
-
The three-letter currency code defined in ISO 4217.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- 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
unitsis positive,nanosmust be positive or zero. Ifunitsis zero,nanoscan be positive, zero, or negative. Ifunitsis negative,nanosmust be negative or zero. For example $-1.75 is represented asunits=-1 andnanos=-750,000,000.final - qualifiedName → String
-
The fully qualified name of this message, i.e.,
google.protobuf.Durationorgoogle.rpc.ErrorInfo.finalinherited - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- units → int
-
The whole units of the amount.
For example if
currencyCodeis"USD", then 1 unit is one US dollar.final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Object -
override
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
- fullyQualifiedName → const String