flatContainsAtLeast method

bool flatContainsAtLeast(
  1. int count,
  2. Iterable<string> s
)

Implementation

bool flatContainsAtLeast(int count, Iterable<string> s) => map((e) => e.asFlat).toList().containsAtLeast(count, s.map((e) => e.asFlat).toList());