toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (externalBudgetId != null) 'externalBudgetId': externalBudgetId!,
      if (preTaxAmountMicros != null)
        'preTaxAmountMicros': preTaxAmountMicros!,
      if (prismaCpeCode != null) 'prismaCpeCode': prismaCpeCode!,
      if (taxAmountMicros != null) 'taxAmountMicros': taxAmountMicros!,
      if (totalAmountMicros != null) 'totalAmountMicros': totalAmountMicros!,
    };