DescribeStreamOutput.fromJson constructor

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

Implementation

factory DescribeStreamOutput.fromJson(Map<String, dynamic> json) {
  return DescribeStreamOutput(
    streamInfo: json['StreamInfo'] != null
        ? StreamInfo.fromJson(json['StreamInfo'] as Map<String, dynamic>)
        : null,
  );
}