toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final attributeKey = this.attributeKey;
  final attributeValue = this.attributeValue;
  return {
    'AttributeKey': attributeKey.toValue(),
    'AttributeValue': attributeValue,
  };
}