'trying to set Paint() color to primary theme

trying to set the color to the primary theme in my flutter app, get an error where context is saying The argument type 'PaintingContext' can't be assigned to the parameter type 'BuildContext'. any idea how to fix this?

   final paint = Paint()

  ..color = Theme.of(context).colorScheme.primary; //Thumb Background Color
  ..style = PaintingStyle.fill;


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source