FeedbackThemeData.light constructor

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

Create a light version of the FeedbackThemeData

Implementation

factory FeedbackThemeData.light({bool sheetIsDraggable = true}) =>
    FeedbackThemeData(
      background: Colors.grey,
      dragHandleColor: Colors.black26,
      feedbackSheetColor: _lightGrey,
      bottomSheetDescriptionStyle: _defaultBottomSheetDescriptionStyle,
      sheetIsDraggable: sheetIsDraggable,
    );