initialized property
bool
get
initialized
whether formKey is initialized
Implementation
bool get initialized {
final State? state = currentState;
if (state == null) {
return false;
}
return true;
}