Border.all constructor
all API.
Implementation
factory Border.all({String color = '000000', double width = 1}) {
final BorderSide side = BorderSide(color: color, width: width);
return Border(top: side, right: side, bottom: side, left: side);
}
all API.
factory Border.all({String color = '000000', double width = 1}) {
final BorderSide side = BorderSide(color: color, width: width);
return Border(top: side, right: side, bottom: side, left: side);
}