hasCoveringIn method

bool hasCoveringIn(
  1. String str
)

Implementation

bool hasCoveringIn(String str) => str.startsWith(this.starts) && str.endsWith(this.ends);