presentWithUrls static method

dynamic presentWithUrls({
  1. required List<String> photos,
  2. int position = 0,
})

Implementation

static presentWithUrls({required List<String> photos, int position = 0}) async {
  _controller ??= PhotoViewController(id: 0);
  await _controller?._presentWithUrls(photos: photos, position: position);
}