BootValidation constructor

BootValidation({
  1. ValidationType? type,
  2. 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;
}