isStoryUrl static method

bool isStoryUrl(
  1. String url
)

Implementation

static bool isStoryUrl(String url) {
  return RegExp(kInstaStoryPattern).hasMatch(url);
}