toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final budgetOptions = this.budgetOptions;
  final currentBudgetAmountMicros = this.currentBudgetAmountMicros;
  final recommendedBudgetAmountMicros = this.recommendedBudgetAmountMicros;
  return {
    'budgetOptions': ?budgetOptions,
    'currentBudgetAmountMicros': ?currentBudgetAmountMicros,
    'recommendedBudgetAmountMicros': ?recommendedBudgetAmountMicros,
  };
}