5 lines
164 B
Dart
5 lines
164 B
Dart
/// Interface for objects that validate when resolved.
|
|
abstract class ValidatesWhenResolved {
|
|
/// Validate the given class instance.
|
|
void validateResolved();
|
|
}
|