startsWithIgnoreCase method

bool startsWithIgnoreCase(
  1. String value
)

Implementation

bool startsWithIgnoreCase(String value) {
  if (this == null) return false;
  return this!.toLowerCase().startsWith(value.toLowerCase());
}