startsWith method

bool startsWith(
  1. String target, [
  2. dynamic position = 0
])

Checks if string starts with the given target string. Example: "helloWorld" -> "hello" -> true

Implementation

bool startsWith(String target, [position = 0]) =>
    startsWith(this, [target, position = 0]);