FileHashHex constructor
Implementation
factory FileHashHex({
$core.String? tenant,
$core.String? hashSm3,
$core.String? 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;
}