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