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.primary, size: 17),
      background: colors.background,
    );