FeedbackThemeData.dark constructor

FeedbackThemeData.dark({
  1. bool sheetIsDraggable = true,
})

Create a dark version of the FeedbackThemeData

Implementation

factory FeedbackThemeData.dark({bool sheetIsDraggable = true}) =>
    FeedbackThemeData(
      background: Colors.grey.shade700,
      dragHandleColor: Colors.white38,
      feedbackSheetColor: _darkGrey,
      bottomSheetDescriptionStyle: const TextStyle(
        color: Colors.white,
      ),
      sheetIsDraggable: sheetIsDraggable,
    );