SearchObjectBadge constructor
SearchObjectBadge({
- SearchObjectBadge_BadgeType? type,
- StringValue? text,
Implementation
factory SearchObjectBadge({
SearchObjectBadge_BadgeType? type,
$3.StringValue? text,
}) {
final result = create();
if (type != null) result.type = type;
if (text != null) result.text = text;
return result;
}