PaylikeCurrency.fromJSON constructor Null safety

PaylikeCurrency.fromJSON(
  1. Map<String, dynamic> json
)

Implementation

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