DescribeApplicationSnapshotResponse.fromJson constructor

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

Implementation

factory DescribeApplicationSnapshotResponse.fromJson(
    Map<String, dynamic> json) {
  return DescribeApplicationSnapshotResponse(
    snapshotDetails: SnapshotDetails.fromJson(
        json['SnapshotDetails'] as Map<String, dynamic>),
  );
}