factory Price.fromJson(Map<String, dynamic> json) => Price( json['formatted'] as String, (json['amountMicros'] as num).round(), json['currencyCode'] as String, );