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