feat(form): add shorthands to access validator status

This commit is contained in:
2022-11-15 18:09:13 -05:00
parent 3a8a604a48
commit 141f15b444
2 changed files with 13 additions and 0 deletions
@@ -58,4 +58,8 @@ abstract class WyattForm extends Equatable {
WyattForm clone();
WyattForm operationWith(FormOperation operation, WyattForm other);
WyattForm reset();
bool isPureInput(String key);
bool isValidInput(String key);
bool isInvalidInput(String key);
}