hasWidgetIdsWith function

Matcher hasWidgetIdsWith(
  1. List expected, {
  2. AFWidgetMapperDelegate? mapper,
})

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?>);
    }
}