mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
43 lines
907 B
Dart
43 lines
907 B
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
enum StatusProjectValidator {
|
|
error,
|
|
warning,
|
|
success,
|
|
crash,
|
|
info,
|
|
}
|
|
|
|
class ProjectValidatorResult {
|
|
|
|
const ProjectValidatorResult({
|
|
required this.name,
|
|
required this.value,
|
|
required this.status,
|
|
this.warning,
|
|
});
|
|
|
|
final String name;
|
|
final String value;
|
|
final String? warning;
|
|
final StatusProjectValidator status;
|
|
|
|
@override
|
|
String toString() {
|
|
if (warning != null) {
|
|
return '$name: $value (warning: $warning)';
|
|
}
|
|
return '$name: $value';
|
|
}
|
|
|
|
static ProjectValidatorResult crash(Object exception, StackTrace trace) {
|
|
return ProjectValidatorResult(
|
|
name: exception.toString(),
|
|
value: trace.toString(),
|
|
status: StatusProjectValidator.crash
|
|
);
|
|
}
|
|
}
|