NoPreviewCard constructor

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

Creates a new no preview card widget.

Implementation

const NoPreviewCard({
  super.key,
  required this.title,
  required this.message,
});