borderDashed method
border-dashed - 虚线边框(Flutter 限制:使用 solid 代替) 如需真正的虚线边框,请使用自定义 CustomPainter
Implementation
ContainerBuilder borderDashed({double width = 1.0, Color color = const Color(0xFFE5E7EB)}) {
// Flutter 不支持 dashed 边框,使用 solid 代替
return borderAll(color: color, width: width);
}