SfDataPagerThemeData constructor

SfDataPagerThemeData(
  1. {Brightness? brightness,
  2. Color? backgroundColor,
  3. Color? itemColor,
  4. TextStyle? itemTextStyle,
  5. Color? selectedItemColor,
  6. TextStyle? selectedItemTextStyle,
  7. Color? disabledItemColor,
  8. TextStyle? disabledItemTextStyle,
  9. Color? itemBorderColor,
  10. double? itemBorderWidth,
  11. BorderRadiusGeometry? itemBorderRadius,
  12. Color? dropdownButtonBorderColor}
)

Create a SfDataPagerThemeData that's used to configure a SfDataPagerTheme.

Implementation

factory SfDataPagerThemeData(
    {Brightness? brightness,
    Color? backgroundColor,
    Color? itemColor,
    TextStyle? itemTextStyle,
    Color? selectedItemColor,
    TextStyle? selectedItemTextStyle,
    Color? disabledItemColor,
    TextStyle? disabledItemTextStyle,
    Color? itemBorderColor,
    double? itemBorderWidth,
    BorderRadiusGeometry? itemBorderRadius,
    Color? dropdownButtonBorderColor}) {
  return SfDataPagerThemeData.raw(
      brightness: brightness,
      backgroundColor: backgroundColor,
      itemColor: itemColor,
      itemTextStyle: itemTextStyle,
      selectedItemColor: selectedItemColor,
      selectedItemTextStyle: selectedItemTextStyle,
      disabledItemColor: disabledItemColor,
      disabledItemTextStyle: disabledItemTextStyle,
      itemBorderColor: itemBorderColor,
      itemBorderWidth: itemBorderWidth,
      itemBorderRadius: itemBorderRadius,
      dropdownButtonBorderColor: dropdownButtonBorderColor);
}