UISwiper constructor

UISwiper({
  1. Iterable<Any>? children,
  2. bool? loop,
  3. int? millisecondsPerSlide,
})

Implementation

factory UISwiper({
  $core.Iterable<$2.Any>? children,
  $core.bool? loop,
  $core.int? millisecondsPerSlide,
}) {
  final result = create();
  if (children != null) result.children.addAll(children);
  if (loop != null) result.loop = loop;
  if (millisecondsPerSlide != null)
    result.millisecondsPerSlide = millisecondsPerSlide;
  return result;
}