toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final effectiveTime = this.effectiveTime;
final retentionDurationSeconds = this.retentionDurationSeconds;
return {
'effectiveTime': ?effectiveTime?.toUtc().toIso8601String(),
'retentionDurationSeconds': ?retentionDurationSeconds,
};
}