ListVolumeSnapshotsResponse.fromJson constructor

ListVolumeSnapshotsResponse.fromJson(
  1. Map json_
)

Implementation

ListVolumeSnapshotsResponse.fromJson(core.Map json_)
    : this(
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
        unreachable: json_.containsKey('unreachable')
            ? (json_['unreachable'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        volumeSnapshots: json_.containsKey('volumeSnapshots')
            ? (json_['volumeSnapshots'] as core.List)
                .map((value) => VolumeSnapshot.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );