PreviewSettings constructor

PreviewSettings({
  1. required bool show,
  2. String? title,
  3. String? subtitle,
  4. String? confirmButtonLabel,
  5. String? retryButtonLabel,
})

Implementation

PreviewSettings(
    {required this.show,
    this.title,
    this.subtitle,
    this.confirmButtonLabel,
    this.retryButtonLabel});