FastPageHeaderRoundedDuotoneIconLayout constructor

const FastPageHeaderRoundedDuotoneIconLayout({
  1. Key? key,
  2. required Widget icon,
  3. double? handsetIconSize,
  4. double? tabletIconSize,
  5. FastPaletteScheme? palette,
  6. bool hasShadow = true,
})

Implementation

const FastPageHeaderRoundedDuotoneIconLayout({
  super.key,
  required this.icon,
  double? handsetIconSize,
  double? tabletIconSize,
  this.palette,
  this.hasShadow = true,
}) : handsetIconSize = handsetIconSize ?? kFastPageHeaderIconSizeSmall,
     tabletIconSize = tabletIconSize ?? kFastPageHeaderIconSizeMedium;