chromaticAberration method

void chromaticAberration({
  1. int shift = 5,
  2. Command? mask,
  3. Channel maskChannel = Channel.luminance,
})

Implementation

void chromaticAberration(
    {int shift = 5, Command? mask, Channel maskChannel = Channel.luminance}) {
  subCommand = ChromaticAberrationCmd(subCommand,
      shift: shift, mask: mask, maskChannel: maskChannel);
}