Creates a list containing n copies of this widget.
n
List<Widget> operator *(int n) => List.generate(n, (_) => this);