Money class final

Represents an amount of money with its currency type.

Inheritance

Constructors

Money({String currencyCode = '', int units = 0, int nanos = 0})
Money.fromJson(Map<String, dynamic> json)
factory

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 units is positive, nanos must be positive or zero. If units is zero, nanos can be positive, zero, or negative. If units is negative, nanos must be negative or zero. For example $-1.75 is represented as units=-1 and nanos=-750,000,000.
final
qualifiedName String
The fully qualified name of this message, i.e., google.protobuf.Duration or google.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 currencyCode is "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