Generates a list of integers from 0 up to (but not including) this integer.
List<int> get listGenerator => List.generate(this, (index) => index);