SfDateRangePickerTheme constructor

const SfDateRangePickerTheme({
  1. Key? key,
  2. required SfDateRangePickerThemeData data,
  3. required Widget child,
})

Constructor for teh calendar theme class, which applies a theme to descendant Syncfusion date range picker widgets.

Implementation

const SfDateRangePickerTheme({
  Key? key,
  required this.data,
  required this.child,
}) : super(key: key, child: child);