How to get difference blend mode effect with flutter_svg
I have tired this but it doesn't work like expected also tired other modes but doesn't match the effect i need. Stack( children: [ Container( color: Colors.white, height: 50, width: 50, ), SvgPicture.asset( 'assets/logo.svg', ColorFilter.mode(Colors.white, BlendMode.difference), ) ], )