BootValidation constructor
BootValidation({
- ValidationType? type,
- List<
int> ? bytes,
Implementation
factory BootValidation({
ValidationType? type,
$core.List<$core.int>? bytes,
}) {
final result = create();
if (type != null) {
result.type = type;
}
if (bytes != null) {
result.bytes = bytes;
}
return result;
}