toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final enabled = this.enabled;
  final snapshotCreationSchedule = this.snapshotCreationSchedule;
  final snapshotLocation = this.snapshotLocation;
  final timeZone = this.timeZone;
  return {
    'enabled': ?enabled,
    'snapshotCreationSchedule': ?snapshotCreationSchedule,
    'snapshotLocation': ?snapshotLocation,
    'timeZone': ?timeZone,
  };
}