visibleError property

E? get visibleError

Implementation

E? get visibleError {
  if (isVisible) {
    return error;
  }

  return null;
}