FDottedLineCorner constructor

const FDottedLineCorner({
  1. double leftTopCorner = 0,
  2. double rightTopCorner = 0,
  3. double rightBottomCorner = 0,
  4. double leftBottomCorner = 0,
})

指定每一个圆角的大小

Specify the size of each rounded corner

Implementation

const FDottedLineCorner({
  this.leftTopCorner = 0,
  this.rightTopCorner = 0,
  this.rightBottomCorner = 0,
  this.leftBottomCorner = 0,
});