ModernPagination constructor

const ModernPagination({
  1. Key? key,
  2. required PaginationOptions options,
  3. @Deprecated('Use options.isDarkMode instead for reactive updates') bool isDarkMode = true,
  4. bool enableGlassmorphism = true,
  5. bool enableGlow = true,
  6. double glowIntensity = 0.4,
})

Implementation

const ModernPagination({
  super.key,
  required this.options,
  @Deprecated('Use options.isDarkMode instead for reactive updates')
  bool isDarkMode = true,
  this.enableGlassmorphism = true,
  this.enableGlow = true,
  this.glowIntensity = 0.4,
});