skip method

String skip(
  1. int count
)

Implementation

String skip(int count) =>
    ((count > 0)
        ? this?.substring(min(size, count))
        : this?.substring(0, max(0, size + count))) ??
    '';