toJson method
Implementation
Map<String, dynamic> toJson() {
final attributeName = this.attributeName;
final keyType = this.keyType;
return {
if (attributeName != null) 'AttributeName': attributeName,
if (keyType != null) 'KeyType': keyType,
};
}