FFCustomCodeFiles constructor

FFCustomCodeFiles({
  1. Iterable<FFCustomCodeFile>? customCodeFiles,
})

Implementation

factory FFCustomCodeFiles({
  $core.Iterable<FFCustomCodeFile>? customCodeFiles,
}) {
  final result = create();
  if (customCodeFiles != null) result.customCodeFiles.addAll(customCodeFiles);
  return result;
}