toJson method

Map<String, dynamic> toJson()

Implementation

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