toList method

  1. @override
List<Card> toList({
  1. bool growable = true,
})
override

Copy the remaining Cards onto a new List.

Implementation

@override
List<Card> toList({bool growable = true}) {
  return _cards.toList(growable: growable).toList();
}