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