FDialogRouteStyle.inherit constructor

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

Creates a FDialogRouteStyle that inherits its properties.

Implementation

FDialogRouteStyle.inherit({required FColors colors})
  : this(barrierFilter: (v) => ColorFilter.mode(.lerp(Colors.transparent, colors.barrier, v)!, .srcOver));