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