SelectPictureDialog constructor

SelectPictureDialog({
  1. required dynamic onPress(
    1. int
    ),
  2. int id = 0,
  3. Key? key,
  4. Color? customColor,
})

Implementation

SelectPictureDialog({
  required this.onPress,
  this.id = 0,
  Key? key,
  this.customColor,
}) : super(key: key);