KeySchemaElement.fromJson constructor
Implementation
factory KeySchemaElement.fromJson(Map<String, dynamic> json) {
return KeySchemaElement(
attributeName: json['AttributeName'] as String,
attributeType: (json['AttributeType'] as String).toScalarAttributeType(),
);
}