toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountBudgetProposal = this.accountBudgetProposal;
  final creationDateTime = this.creationDateTime;
  final endDateTime = this.endDateTime;
  final endTimeType = this.endTimeType;
  final name = this.name;
  final notes = this.notes;
  final proposalType = this.proposalType;
  final purchaseOrderNumber = this.purchaseOrderNumber;
  final spendingLimitMicros = this.spendingLimitMicros;
  final spendingLimitType = this.spendingLimitType;
  final startDateTime = this.startDateTime;
  return {
    'accountBudgetProposal': ?accountBudgetProposal,
    'creationDateTime': ?creationDateTime,
    'endDateTime': ?endDateTime,
    'endTimeType': ?endTimeType,
    'name': ?name,
    'notes': ?notes,
    'proposalType': ?proposalType,
    'purchaseOrderNumber': ?purchaseOrderNumber,
    'spendingLimitMicros': ?spendingLimitMicros,
    'spendingLimitType': ?spendingLimitType,
    'startDateTime': ?startDateTime,
  };
}