toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final externalBudgetId = this.externalBudgetId;
  final preTaxAmountMicros = this.preTaxAmountMicros;
  final prismaCpeCode = this.prismaCpeCode;
  final taxAmountMicros = this.taxAmountMicros;
  final totalAmountMicros = this.totalAmountMicros;
  return {
    'externalBudgetId': ?externalBudgetId,
    'preTaxAmountMicros': ?preTaxAmountMicros,
    'prismaCpeCode': ?prismaCpeCode,
    'taxAmountMicros': ?taxAmountMicros,
    'totalAmountMicros': ?totalAmountMicros,
  };
}