TransferObjectsRequest constructor
TransferObjectsRequest({
- AccountId? accountId,
- Iterable<
StoredObjectId> ? objects,
Implementation
factory TransferObjectsRequest({
$1.AccountId? accountId,
$core.Iterable<$1.StoredObjectId>? objects,
}) {
final result = create();
if (accountId != null) result.accountId = accountId;
if (objects != null) result.objects.addAll(objects);
return result;
}