toJson method

Map<String, dynamic> toJson()

Implementation

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