toJson method

Map<String, dynamic> toJson()

Implementation

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