isMediumPostUrl method

bool isMediumPostUrl({
  1. String? postId,
})

Check string is medium post url

Implementation

bool isMediumPostUrl({String? postId}) {
  var o = mediumPostUrl;
  if (o == null) return false;
  return (postId == null || o.postId == postId);
}