ArchiveGroupSettings.fromJson constructor
Implementation
factory ArchiveGroupSettings.fromJson(Map<String, dynamic> json) {
return ArchiveGroupSettings(
destination: OutputLocationRef.fromJson(
json['destination'] as Map<String, dynamic>),
rolloverInterval: json['rolloverInterval'] as int?,
);
}