isValid method

  1. @override
bool isValid()
override

Implementation

@override
bool isValid() {
  if (super.isValid() && super.location != null) {
    return Uri.parse(super.location ?? "").isAbsolute;
  } else {
    return false;
  }
}