toJson method

Map<String, dynamic> toJson()

Implementation

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