isIncludeIndex method

bool isIncludeIndex([
  1. int min = 10,
  2. int max = 20
])

长度范围

Implementation

bool isIncludeIndex([int min = 10, int max = 20]) =>
    this.length >= min && this.length <= max;