Money class

Represents an amount of money with its currency type.

Documentation: https://developers.google.com/maps/documentation/places/web-service/reference/rest/v1/places#money

Inheritance
Available extensions
Annotations
  • @JsonSerializable()
  • @CopyWith()

Constructors

Money.new({String? currencyCode, String? units, int? nanos})
Money.fromJson(Map<String, dynamic> json)
factory

Properties

copyWith → _$MoneyCWProxy

Available on Money, provided by the $MoneyCopyWith extension

Returns a callable class that can be used as follows: instanceOfMoney.copyWith(...).
no setter
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
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
units String?
The whole units of the amount. For example if currencyCode is "USD", then 1 unit is one US dollar.
final

Methods

fromJsonList(List? jsonList) List<Money>?
inherited
fromJsonMap(Map<String, dynamic>? json) Money?
override
fromJsonString(String? json) Money?
inherited
fromJsonStringList(String? jsonStringList) List<Money>?
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toFieldsMask({String? parentKey}) List<String>
inherited
toJson() Map<String, dynamic>
override
toJsonMap() Map<String, dynamic>
inherited
toJsonString() String
inherited
toString() String
This is just to suggest children to implement a named constructor to support creating objects fromJson(...) and fromJsonString(...) as easy as T.build().fromJson(...) or T.build().fromJsonString(...)
inherited

Operators

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