DescribeTableOutput.fromJson constructor
Implementation
factory DescribeTableOutput.fromJson(Map<String, dynamic> json) {
return DescribeTableOutput(
table: json['Table'] != null
? TableDescription.fromJson(json['Table'] as Map<String, dynamic>)
: null,
);
}