isStackoverflowUserUrl method

bool isStackoverflowUserUrl({
  1. String? id,
})

Check string is stackoverflow user url

Implementation

bool isStackoverflowUserUrl({String? id}) {
  var o = stackoverflowUserUrl;
  if (o == null) return false;
  return (id == null || o.id == id);
}