void addBlur(double amount, [double? amountY]) { _paint.imageFilter = ImageFilter.blur( sigmaX: amount, sigmaY: amountY ?? amount, ); }