PopupGalleryView constructor

const PopupGalleryView({
  1. Key? key,
  2. required ChatId chatId,
  3. String? initialKey,
  4. int initialIndex = 0,
  5. required Future<ScopedDependencies> depsFactory(),
})

Implementation

const PopupGalleryView({
  super.key,
  required this.chatId,
  this.initialKey,
  this.initialIndex = 0,
  required this.depsFactory,
});