static InvoiceModel typeFromJson(Map<String, dynamic> json) {
return InvoiceModel(
id: json['id'],
waterStartReading: json['water_start_reading'],
waterEndReading: json['water_end_reading'],
powerStartReading: json['power_start_reading'],
powerEndReading: json['power_end_reading'],
waterTotal: (json['water_total'] as num?)?.toDouble() ?? 0.0,
powerTotal: (json['power_total'] as num?)?.toDouble() ?? 0.0,
total: (json['total'] as num?)?.toDouble() ?? 0.0,
/* waterUnitAmount: (json['water_unit_amount'] is String)
? double.tryParse(json['water_unit_amount']) ?? 0.0
: json['water_unit_amount'],
powerUnitAmount: (json['power_unit_amount'] is String)
? double.tryParse(json['power_unit_amount']) ?? 0.0
: json['power_unit_amount'],*/
//vat: json['vat'],
//vatPercent: json['vat_percent'],
rent: json['rent'],
note: json['note'],
isEditable: json['is_editable'],
status: json['status'],
isComplete: json['is_complete'],
imagePath: json['image_path'],
createdAt: json['created_at'],
updatedAt: json['updated_at'],
notifyAt: json['notify_at'],
);
}