InboxId constructor

InboxId({
  1. EntityId? entityId,
  2. String? typeUrl,
})

Implementation

factory InboxId({
  $56.EntityId? entityId,
  $core.String? typeUrl,
}) {
  final _result = create();
  if (entityId != null) {
    _result.entityId = entityId;
  }
  if (typeUrl != null) {
    _result.typeUrl = typeUrl;
  }
  return _result;
}