hasWidgetIdsWith function
Implementation
ft.Matcher hasWidgetIdsWith(List<dynamic> expected, { AFWidgetMapperDelegate? mapper }) {
    if(mapper != null ) {
      return _AFHasWidgetIds(expected.map(mapper).toList());
    } else {
      return _AFHasWidgetIds(expected as List<AFWidgetID?>);
    }
}