stellar_flutter_sdk
stellar_flutter_sdk
Price
Price.fromJson factory constructor
Price.fromJson
stellar_flutter_sdk
stellar_flutter_sdk
Price
Price.fromJson factory constructor
Price class
Constructors
Price
fromJson
Properties
d
denominator
hashCode
n
numerator
runtimeType
Methods
noSuchMethod
toJson
toString
toXdr
Operators
operator ==
Static methods
fromString
Price.fromJson
constructor
Price.fromJson
(
Map
<
String
,
dynamic
>
json
)
Implementation
factory Price.fromJson(Map<String, dynamic> json) => new Price(json['n'] as int, json['d'] as int);