AggregateType constructor
AggregateType({
- String? type,
- LocalizedMessage? localized,
Implementation
factory AggregateType({
$core.String? type,
$9.LocalizedMessage? localized,
}) {
final $result = create();
if (type != null) {
$result.type = type;
}
if (localized != null) {
$result.localized = localized;
}
return $result;
}