FSheetStyle.inherit constructor

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

Creates a FSheetStyle that inherits its colors from the given FColors.

Implementation

FSheetStyle.inherit({required FColors colors})
  : this(barrierColor: colors.barrier, backgroundColor: colors.background);