toJson method
Implementation
Map<String, Object?> toJson() {
var contextId = this.contextId;
var groupIds = this.groupIds;
var type = this.type;
final json = <String, Object?>{};
json[r'contextId'] = contextId;
json[r'groupIds'] = groupIds;
json[r'type'] = type;
return json;
}