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