FSelectScrollHandleStyle.inherit constructor

FSelectScrollHandleStyle.inherit({
  1. required FColors colors,
})

Creates a FSelectScrollHandleStyle that inherits its properties.

Implementation

FSelectScrollHandleStyle.inherit({required FColors colors})
  : this(
      iconStyle: IconThemeData(color: colors.foreground, size: 17),
      background: colors.card,
    );