ArchiveGroupSettings.fromJson constructor

ArchiveGroupSettings.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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