toJson method

Map<String, dynamic> toJson()

Implementation

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