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