Check string is stackoverflow question url
bool isStackoverflowQuestionUrl({String? id}) { var o = stackoverflowQuestionUrl; if (o == null) return false; return (id == null || o.id == id); }