initialized property

bool initialized

whether formKey is initialized

Implementation

bool get initialized {
  final State? state = currentState;
  if (state == null) {
    return false;
  }
  return true;
}