toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final daysSinceLastRefresh = this.daysSinceLastRefresh;
  final ownerAccount = this.ownerAccount;
  final targetingAccountsCount = this.targetingAccountsCount;
  final topSpendingAccount = this.topSpendingAccount;
  final userListId = this.userListId;
  final userListName = this.userListName;
  return {
    'daysSinceLastRefresh': ?daysSinceLastRefresh,
    'ownerAccount': ?ownerAccount,
    'targetingAccountsCount': ?targetingAccountsCount,
    'topSpendingAccount': ?topSpendingAccount,
    'userListId': ?userListId,
    'userListName': ?userListName,
  };
}