factory Amount.fromJson(Map<String, dynamic> json) { return Amount( value: json['value'], currency: json['unit'], ); }