roundCorners static method
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
);