toJson method

Map<String, dynamic> toJson()

Implementation

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