ApplicationSnapshotConfigurationDescription.fromJson constructor

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

Implementation

factory ApplicationSnapshotConfigurationDescription.fromJson(
    Map<String, dynamic> json) {
  return ApplicationSnapshotConfigurationDescription(
    snapshotsEnabled: json['SnapshotsEnabled'] as bool,
  );
}