toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final amount = this.amount;
  final budgetFilter = this.budgetFilter;
  final displayName = this.displayName;
  final etag = this.etag;
  final name = this.name;
  final notificationsRule = this.notificationsRule;
  final ownershipScope = this.ownershipScope;
  final thresholdRules = this.thresholdRules;
  return {
    'amount': ?amount,
    'budgetFilter': ?budgetFilter,
    'displayName': ?displayName,
    'etag': ?etag,
    'name': ?name,
    'notificationsRule': ?notificationsRule,
    'ownershipScope': ?ownershipScope,
    'thresholdRules': ?thresholdRules,
  };
}