roundCorners static method

QrFrameShapeRoundCorners roundCorners({
  1. required double cornerFraction,
  2. double widthFraction = 1,
  3. bool topLeft = true,
  4. bool topRight = true,
  5. bool bottomLeft = true,
  6. bool bottomRight = true,
})

Implementation

static QrFrameShapeRoundCorners roundCorners({
  required double cornerFraction,
  double widthFraction = 1,
  bool topLeft = true,
  bool topRight = true,
  bool bottomLeft = true,
  bool bottomRight = true
}) => QrFrameShapeRoundCorners(
        widthFraction: widthFraction,
        cornerFraction: cornerFraction,
        topLeft: topLeft,
        topRight: topRight,
        bottomLeft: bottomLeft,
        bottomRight: bottomRight
    );