fillLight static method

FillLight fillLight({
  1. dynamic blend,
  2. dynamic bias,
})

Adjusts the fill light and blends the result with the original image.

blend dynamic How much to blend the adjusted fill light, where 0 means only use the original and 100 means only use the adjusted fill light result. Range: 0 to 100, Server default: 100) bias dynamic The bias to apply to the fill light effect (Range: -100 to 100, Server default: 0). Returns FillLight

Implementation

static FillLight fillLight({dynamic blend, dynamic bias}) {
  return FillLight(blend: blend, bias: bias);
}