AggregateType constructor

AggregateType({
  1. String? type,
  2. LocalizedMessage? localized,
})

Implementation

factory AggregateType({
  $core.String? type,
  $14.LocalizedMessage? localized,
}) {
  final _result = create();
  if (type != null) {
    _result.type = type;
  }
  if (localized != null) {
    _result.localized = localized;
  }
  return _result;
}