FFProjectTests constructor
FFProjectTests({
- @Deprecated('This field is deprecated.') Iterable<
FFProjectTest> ? tests, - FFTestGroup? rootGroup,
Implementation
factory FFProjectTests({
@$core.Deprecated('This field is deprecated.')
$core.Iterable<FFProjectTest>? tests,
FFTestGroup? rootGroup,
}) {
final result = create();
if (tests != null) result.tests.addAll(tests);
if (rootGroup != null) result.rootGroup = rootGroup;
return result;
}