FFScreenshotValues_ScreenshotValue constructor

FFScreenshotValues_ScreenshotValue({
  1. Iterable<int>? tagPath,
  2. 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;
}