DeletedInvoiceitem.fromJson constructor
DeletedInvoiceitem.fromJson(
- Object? json
Implementation
factory DeletedInvoiceitem.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return DeletedInvoiceitem(id: (map['id'] as String));
}