PaylikeCurrency.fromJSON constructor Null safety
Implementation
PaylikeCurrency.fromJSON(Map<String, dynamic> json)
: code = json['code'],
currency = json['currency'],
numeric = int.parse(json['numeric']),
exponent = json['exponent'];