GallerizeInfo constructor

const GallerizeInfo({
  1. Key? key,
  2. required String title,
  3. required String description,
})

Creates an instance of GallerizeInfo.

Implementation

const GallerizeInfo(
    {Key? key, required this.title, required this.description})
    : super(key: key);