isValid property

bool get isValid

Implementation

bool get isValid {
  if (onValidator != null) {
    return onValidator!(_editor.text);
  } else {
    return true;
  }
}