borderAll method

ContainerBuilder borderAll({
  1. Color color = Colors.black,
  2. double width = 1.0,
})

Implementation

ContainerBuilder borderAll({Color color = Colors.black, double width = 1.0}) {
  _border = Border.all(color: color, width: width);
  return this;
}