FFScreenshotValues_ScreenshotValue constructor
FFScreenshotValues_ScreenshotValue({
- Iterable<
int> ? tagPath, - FFParameterValue? value,
Implementation
factory FFScreenshotValues_ScreenshotValue({
$core.Iterable<$core.int>? tagPath,
FFParameterValue? value,
}) {
final result = create();
if (tagPath != null) result.tagPath.addAll(tagPath);
if (value != null) result.value = value;
return result;
}