toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final budgetAllocationType = this.budgetAllocationType;
  final budgetUnit = this.budgetUnit;
  final maxAmount = this.maxAmount;
  return {
    'budgetAllocationType': ?budgetAllocationType,
    'budgetUnit': ?budgetUnit,
    'maxAmount': ?maxAmount,
  };
}