FrameSystemConfigResponse constructor

FrameSystemConfigResponse({
  1. Iterable<FrameSystemConfig>? frameSystemConfigs,
})

Implementation

factory FrameSystemConfigResponse({
  $core.Iterable<FrameSystemConfig>? frameSystemConfigs,
}) {
  final $result = create();
  if (frameSystemConfigs != null) {
    $result.frameSystemConfigs.addAll(frameSystemConfigs);
  }
  return $result;
}