factory Price.fromMap(Map<String, dynamic> json) => Price( amount: json["amount"], currency: json["currency"], id: json["id"], );