factory Spend.fromJson(Map<String, dynamic> json) { return Spend( amount: json['Amount'] as String, unit: json['Unit'] as String, ); }