DescribeTableOutput.fromJson constructor

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

Implementation

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