FileHash constructor
Implementation
factory FileHash({
$core.String? tenant,
$core.List<$core.int>? hashSm3,
$core.List<$core.int>? hashSha256,
$fixnum.Int64? fileSize,
}) {
final result = create();
if (tenant != null) result.tenant = tenant;
if (hashSm3 != null) result.hashSm3 = hashSm3;
if (hashSha256 != null) result.hashSha256 = hashSha256;
if (fileSize != null) result.fileSize = fileSize;
return result;
}