TaxProductResourceTaxTransactionLineItemResourceReversal.fromJson constructor

TaxProductResourceTaxTransactionLineItemResourceReversal.fromJson(
  1. 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));
}