SfDataPagerThemeData constructor

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

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

Implementation

const SfDataPagerThemeData(
    {this.backgroundColor,
    this.itemColor,
    this.itemTextStyle,
    this.selectedItemColor,
    this.selectedItemTextStyle,
    this.disabledItemColor,
    this.disabledItemTextStyle,
    this.itemBorderColor,
    this.itemBorderWidth,
    this.itemBorderRadius,
    this.dropdownButtonBorderColor});